We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f30007 commit 6d3ad52Copy full SHA for 6d3ad52
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