Skip to content

Commit 9ca8ebd

Browse files
committed
Implemented IgnoreIndex method
1 parent fe99e47 commit 9ca8ebd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Orm/Xtensive.Orm/Orm/Configuration/IgnoreRuleCollection.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ public IIgnoreRuleConstructionFlow IgnoreColumn(string columnName)
4545
/// <returns><see cref="IgnoreRule"/> construction flow</returns>
4646
public IIgnoreRuleConstructionFlow IgnoreIndex(string indexName)
4747
{
48-
throw new NotImplementedException();
48+
var rule = new IgnoreRule { Index = indexName };
49+
Add(rule);
50+
return new IgnoreRuleConstructionFlow(rule);
4951
}
5052

5153
/// <inheritdoc />

0 commit comments

Comments
 (0)