We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe99e47 commit 9ca8ebdCopy full SHA for 9ca8ebd
1 file changed
Orm/Xtensive.Orm/Orm/Configuration/IgnoreRuleCollection.cs
@@ -45,7 +45,9 @@ public IIgnoreRuleConstructionFlow IgnoreColumn(string columnName)
45
/// <returns><see cref="IgnoreRule"/> construction flow</returns>
46
public IIgnoreRuleConstructionFlow IgnoreIndex(string indexName)
47
{
48
- throw new NotImplementedException();
+ var rule = new IgnoreRule { Index = indexName };
49
+ Add(rule);
50
+ return new IgnoreRuleConstructionFlow(rule);
51
}
52
53
/// <inheritdoc />
0 commit comments