mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Async Queryable BUG
This commit is contained in:
parent
5cede98855
commit
dbe24b159a
@ -8,8 +8,8 @@ namespace OrmTest
|
||||
{
|
||||
public class Config
|
||||
{
|
||||
public static string ConnectionString = "server=.;uid=sa;pwd=@jhl85661501;database=SqlSugar4XTest";
|
||||
public static string ConnectionString2 = "server=.;uid=sa;pwd=@jhl85661501;database=SQLSUGAR4XTEST";
|
||||
public static string ConnectionString3 = "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=sasa;database=SQLSUGAR4XTEST";
|
||||
public static string ConnectionString3 = "server=.;uid=sa;pwd=sasa;database=sqlsugar4xtest";
|
||||
}
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ namespace OrmTest
|
||||
Demo.ExtEntity.Init();
|
||||
|
||||
/***BUG repair test***/
|
||||
//new BugTest.Bug1().Init();
|
||||
new BugTest.Bug1().Init();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1288,6 +1288,7 @@ namespace SqlSugar
|
||||
asyncQueryableBuilder.IsDisabledGobalFilter = this.QueryBuilder.IsDisabledGobalFilter;
|
||||
asyncQueryableBuilder.PartitionByValue = this.QueryBuilder.PartitionByValue;
|
||||
asyncQueryableBuilder.JoinExpression = this.QueryBuilder.JoinExpression;
|
||||
asyncQueryableBuilder.WhereIndex = this.QueryBuilder.WhereIndex;
|
||||
return asyncQueryable;
|
||||
}
|
||||
#endregion
|
||||
|
Loading…
Reference in New Issue
Block a user