Skip to content

Commit a29d889

Browse files
committed
Add IgnoreRuleCollection.IgnoreIndex method
- method is not implemented for now
1 parent 1c70d62 commit a29d889

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

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

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
// Copyright (C) 2013 Xtensive LLC.
2-
// All rights reserved.
3-
// For conditions of distribution and use, see license.
1+
// Copyright (C) 2013 Xtensive LLC.
2+
// This code is distributed under MIT license terms.
3+
// See the License.txt file in the project root for more information.
44
// Created by: Alexey Kulakov
55
// Created: 2013.08.16
66

@@ -38,6 +38,16 @@ public IIgnoreRuleConstructionFlow IgnoreColumn(string columnName)
3838
return new IgnoreRuleConstructionFlow(rule);
3939
}
4040

41+
/// <summary>
42+
/// Adds to collection <see cref="IgnoreRule"/> for targeted specified <paramref name="indexName"/>.
43+
/// </summary>
44+
/// <param name="indexName">Index to ignore</param>
45+
/// <returns><see cref="IgnoreRule"/> construction flow</returns>
46+
public IIgnoreRuleConstructionFlow IgnoreIndex(string indexName)
47+
{
48+
throw new NotImplementedException();
49+
}
50+
4151
/// <inheritdoc />
4252
public object Clone()
4353
{

0 commit comments

Comments
 (0)