We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a651d0 commit 9adb717Copy full SHA for 9adb717
src/NHibernate/Mapping/ByCode/Impl/CustomizersImpl/ClassCustomizer.cs
@@ -117,9 +117,9 @@ public void Table(string tableName)
117
CustomizersHolder.AddCustomizer(typeof(TEntity), (IClassMapper m) => m.Table(tableName));
118
}
119
120
- public void Check(string tableName)
+ public void Check(string check)
121
{
122
- CustomizersHolder.AddCustomizer(typeof(TEntity), (IClassMapper m) => m.Check(tableName));
+ CustomizersHolder.AddCustomizer(typeof(TEntity), (IClassMapper m) => m.Check(check));
123
124
125
public void Catalog(string catalogName)
0 commit comments