在配置文件中配置连接字符串
1. 使用nuget安装SQLite
Install-Package System.Data.SQLite
安装好后的依赖项有:
- System.Data.SQLite.dll
- System.Data.SQLite.EF6.dll
System.Data.SQLite.Linq.dll
如果没有安装全,则需要手动安装需要的DLL
2. 安装时会自动配置配置文件。配置好的文件如下:
==注意==
configSections配置节一定要在connectionStrings节之前,为了保险,我把它放在最后了。
其中,连接字符串是后来加上的。到这一步已经可以正常访问了。
3. 程序中使用
using (DbContext db = new DbContext("mydb")){ //}
不在配置连接字符串的配置
1.配置文件中不用配置connectionStrings节。
2.程序中使用
SQLiteConnection conn = new SQLiteConnection("Data Source=c:\my.db;");using (DbContext db = new DbContext(conn,false)){ //}