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.
2 parents cc0699d + ecbdc57 commit 62fd43bCopy full SHA for 62fd43b
SQLite.CodeFirst/SqliteConnectionStringParser.cs
@@ -31,6 +31,8 @@ public static IDictionary<string, string> ParseSqliteConnectionString(string con
31
public static string GetDataSource(string connectionString)
32
{
33
var path = ExpandDataDirectory(ParseSqliteConnectionString(connectionString)["data source"]);
34
+ // remove quotation mark if exists
35
+ path = path.Trim('"');
36
return path;
37
}
38
0 commit comments