sqlsugar这个框架查询数据速度很快, 接近原生, 所以就决定用它咯 它和ef一样 有codefirst和dbfirst
不多说 直接上代码
首先 写连接数据库的类
public class SqlSugarInstance { public static SqlSugarClient GetInstance() { SqlSugarClient db = new SqlSugarClient(new ConnectionConfig() { ConnectionString=@"xxxxxx", //必填 DbType = DbType.SqlServer, //必填 IsAutoCloseConnection = true, InitKeyType = InitKeyType.Attribute // Attribute用于DbFirst 从数据库生成model的
//InitKeyType = InitKeyType.SystemTable SystemTable用于Codefirst 从model库生成数据库表的
}); return db; } }
然后就是代码了
using (SqlSugarClient db =SqlSugarInstance.GetInstance()) { try { // db.CodeFirst.InitTables(typeof(xxxx)); db.DbFirst.Where("xxxx").CreateClassFile("D:\Demo\2.txt");//生成文件的·地址 } catch (Exception ex) { throw; } }
好了 差不多就是这样了 很方便快捷 生成文件的地址也可以放在你项目文件指定的地址下 不过没试过 不知道能不能成功 哈哈哈