@@ -6,6 +6,19 @@ Release notes - NHibernate - Version 5.1.0
6
6
##### Possible Breaking Changes #####
7
7
* Since Ingres9Dialect is now supporting sequences, the enhanced-sequence identifier generator will default to
8
8
using a sequence instead of a table. Revert to previous behavior by using its force_table_use parameter.
9
+ * Some overridable methods of the Dialect base class and of MsSql2000Dialect have been obsoleted in favor of
10
+ new methods. Dialects implementors need to override the replacing methods if they were overriding the
11
+ obsolete ones, which are:
12
+ * Dialect.GetIfNotExistsCreateConstraint(Table table, string name), replaced by
13
+ GetIfNotExistsCreateConstraint(string catalog, string schema, string table, string name).
14
+ * Dialect.GetIfNotExistsCreateConstraintEnd(Table table, string name), replaced by
15
+ GetIfNotExistsCreateConstraintEnd(string catalog, string schema, string table, string name).
16
+ * Dialect.GetIfExistsDropConstraint(Table table, string name), replaced by
17
+ GetIfExistsDropConstraint(string catalog, string schema, string table, string name).
18
+ * Dialect.GetIfExistsDropConstraintEnd(Table table, string name), replaced by
19
+ GetIfExistsDropConstraintEnd(string catalog, string schema, string table, string name).
20
+ * MsSql2000Dialect.GetSelectExistingObject(string name, Table table), replaced by
21
+ GetSelectExistingObject(string catalog, string schema, string table, string name).
9
22
10
23
**
11
24
0 commit comments