-
Notifications
You must be signed in to change notification settings - Fork 2
3. 创建IDapperLite实例
0611163 edited this page Jul 26, 2023
·
1 revision
IDapperLite请定义成单例,不要重复new DapperLite,一个项目中一个数据库只new一个DapperLite即可。
IDapperLite _dapperLite = new DapperLite(
"Data Source=localhost;Port=3306;User ID=root;Password=123456;Initial Catalog=litesql_test;Charset=utf8mb4;SslMode=none;Allow User Variables=True;",
new MySQLProvider());
源码的测试代码中定义DapperLiteFactory是为了使用方便,高并发场景尽量不要使用DapperLiteFactory,如果非要使用,使用前请预热。