Async Queryable BUG

This commit is contained in:
sunkaixuan 2018-11-10 11:55:36 +08:00
parent 5cede98855
commit dbe24b159a
3 changed files with 5 additions and 4 deletions

View File

@ -8,8 +8,8 @@ namespace OrmTest
{ {
public class Config public class Config
{ {
public static string ConnectionString = "server=.;uid=sa;pwd=@jhl85661501;database=SqlSugar4XTest"; public static string ConnectionString = "server=.;uid=sa;pwd=sasa;database=SqlSugar4XTest";
public static string ConnectionString2 = "server=.;uid=sa;pwd=@jhl85661501;database=SQLSUGAR4XTEST"; public static string ConnectionString2 = "server=.;uid=sa;pwd=sasa;database=SQLSUGAR4XTEST";
public static string ConnectionString3 = "server=.;uid=sa;pwd=@jhl85661501;database=sqlsugar4xtest"; public static string ConnectionString3 = "server=.;uid=sa;pwd=sasa;database=sqlsugar4xtest";
} }
} }

View File

@ -56,7 +56,7 @@ namespace OrmTest
Demo.ExtEntity.Init(); Demo.ExtEntity.Init();
/***BUG repair test***/ /***BUG repair test***/
//new BugTest.Bug1().Init(); new BugTest.Bug1().Init();
} }
} }
} }

View File

@ -1288,6 +1288,7 @@ namespace SqlSugar
asyncQueryableBuilder.IsDisabledGobalFilter = this.QueryBuilder.IsDisabledGobalFilter; asyncQueryableBuilder.IsDisabledGobalFilter = this.QueryBuilder.IsDisabledGobalFilter;
asyncQueryableBuilder.PartitionByValue = this.QueryBuilder.PartitionByValue; asyncQueryableBuilder.PartitionByValue = this.QueryBuilder.PartitionByValue;
asyncQueryableBuilder.JoinExpression = this.QueryBuilder.JoinExpression; asyncQueryableBuilder.JoinExpression = this.QueryBuilder.JoinExpression;
asyncQueryableBuilder.WhereIndex = this.QueryBuilder.WhereIndex;
return asyncQueryable; return asyncQueryable;
} }
#endregion #endregion