Skip to content

Commit

Permalink
Merge pull request #7415 from abpframework/cli-ConnectionStringProvid…
Browse files Browse the repository at this point in the history
…er-fix
  • Loading branch information
maliming committed Jan 22, 2021
2 parents a9a990b + 078dc42 commit fb18821
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public string GetByDbms(DatabaseManagementSystem databaseManagementSystem, strin
case DatabaseManagementSystem.OracleDevart:
return "Data Source=MyProjectName;Integrated Security=yes;";
case DatabaseManagementSystem.SQLite:
return $"Data Source={Path.Combine(outputFolder,"database\\MyProjectName.db")};Version=3;";
return $"Data Source={Path.Combine(outputFolder , "MyProjectName.db")};".Replace("\\", "\\\\");
default:
return null;
}
Expand Down

0 comments on commit fb18821

Please sign in to comment.