mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 12:28:15 +08:00
## v0.3.25
- 修复 全局过滤器一个赋值低级错误; - 增加 IFreeSql<TMark> 空接口,现实多个 IFreeSql 注入使用,使用泛型标识区分;
This commit is contained in:
@ -10,7 +10,7 @@ using System.Data.Common;
|
||||
|
||||
namespace FreeSql.Sqlite {
|
||||
|
||||
class SqliteProvider : IFreeSql {
|
||||
class SqliteProvider<TMark> : IFreeSql<TMark> {
|
||||
|
||||
public ISelect<T1> Select<T1>() where T1 : class => new SqliteSelect<T1>(this, this.InternalCommonUtils, this.InternalCommonExpression, null);
|
||||
public ISelect<T1> Select<T1>(object dywhere) where T1 : class => new SqliteSelect<T1>(this, this.InternalCommonUtils, this.InternalCommonExpression, dywhere);
|
||||
|
Reference in New Issue
Block a user