You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Orm/Xtensive.Orm/Orm/StorageNodeManager.cs
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,9 @@
5
5
// Created: 2014.03.13
6
6
7
7
usingSystem;
8
+
usingSystem.Linq;
8
9
usingJetBrains.Annotations;
10
+
usingXtensive.Core;
9
11
usingXtensive.Orm.Configuration;
10
12
usingXtensive.Orm.Providers;
11
13
usingXtensive.Orm.Upgrade;
@@ -34,12 +36,24 @@ public bool AddNode([NotNull] NodeConfiguration configuration)
34
36
/// Removes node with specified <paramref name="nodeId"/>.
35
37
/// </summary>
36
38
/// <param name="nodeId">Node identifier.</param>
39
+
/// <param name="clearQueryCache">
40
+
/// if <see langword="true"/> then cached queries dedicated to the removing node will be removed from cache as well. By default <see langword="false"/>.
41
+
/// </param>
37
42
/// <returns>True if node was removed, otherwise false.</returns>
0 commit comments