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 54a1f02 commit 9bb595bCopy full SHA for 9bb595b
lib/log4net.dll
28 KB
src/Migrator/ProviderFactory.cs
@@ -47,7 +47,7 @@ public static Dialect DialectForProvider(string providerName)
47
48
foreach (string key in dialects.Keys)
49
{
50
- if (0 < key.IndexOf(providerName, StringComparison.InvariantCultureIgnoreCase))
+ if (key.IndexOf(providerName, StringComparison.InvariantCultureIgnoreCase) >= 0)
51
return dialects[key];
52
}
53
return null;
0 commit comments