We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3725fdf commit 68d3a8fCopy full SHA for 68d3a8f
Orm/Xtensive.Orm/Orm/Configuration/DomainTypeRegistry.cs
@@ -119,7 +119,7 @@ public IEnumerable<Type> ConnectionHandlers
119
}
120
return connectionHandlers;
121
122
- // if instacne is not locked then there is a chance of new handlers appeared
+ // if instance is not locked then there is a chance of new handlers appeared
123
return this.Where(IsConnectionHandler);
124
125
@@ -143,7 +143,8 @@ public static bool IsInterestingType(Type type)
143
IsUpgradeHandler(type) ||
144
IsKeyGenerator(type) ||
145
IsCompilerContainer(type) ||
146
- IsFullTextCatalogNameBuilder(type);
+ IsFullTextCatalogNameBuilder(type) ||
147
+ IsConnectionHandler(type);
148
149
150
/// <summary>
0 commit comments