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 aa6dae0 commit 0c43eaeCopy full SHA for 0c43eae
1 file changed
SQLite.CodeFirst/SqliteConnectionStringParser.cs
@@ -18,7 +18,7 @@ public static IDictionary<string, string> ParseSqliteConnectionString(string con
18
foreach (var keyValuePair in keyValuePairs)
19
{
20
string[] keyValue = keyValuePair.Split(KeyValueSeperator);
21
- keyValuePairDictionary.Add(keyValue[KeyPosition], keyValue[ValuePosition]);
+ keyValuePairDictionary.Add(keyValue[KeyPosition].ToLower(), keyValue[ValuePosition]);
22
}
23
24
return keyValuePairDictionary;
0 commit comments