This commit is contained in:
sunkaixuan
2019-05-08 17:05:50 +08:00
parent 6562e9ab58
commit e6a88d849b
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ namespace SqlSugar
#region T1
public partial class QueryableProvider<T> : QueryableAccessory, ISugarQueryable<T>
{
public SqlSugarEngine Context { get; set; }
public ISqlSugarClient Context { get; set; }
public IAdo Db { get { return Context.Ado; } }
public IDbBind Bind { get { return this.Db.DbBind; } }
public ISqlBuilder SqlBuilder { get; set; }

View File

@@ -11,7 +11,7 @@ namespace SqlSugar
{
public partial interface ISugarQueryable<T>
{
SqlSugarEngine Context { get; set; }
ISqlSugarClient Context { get; set; }
ISqlBuilder SqlBuilder { get; set; }
QueryBuilder QueryBuilder { get; set; }
ISugarQueryable<T> Clone();