Dapper 是一款非常不错的轻型 ORM 框架,使用起来非常方便,经常使用 EF 框架的人几乎感觉不到差别,下面是自己写的 Sqlite 通用帮助类;
数据连接类;
public class SQLiteBaseRepository { public static string DbFile { get { return Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "VideoInfo.db"); } } public static SQLiteConnection SimpleDbConnection() { string connString = string.Format("Data Source={0};Password=******;", DbFile); return new SQLiteConnection(connString); } }