mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-20 18:48:09 +08:00
Add unit test
This commit is contained in:
@@ -85,6 +85,11 @@ namespace OrmTest
|
||||
|
||||
var list6 = db.Queryable<UnitPerson011>()
|
||||
.LeftJoin<Order>((it, y) => it.Id == y.Id).Where("it", $"SqlFunc.Exists(it.Address.Id)").OrderBy((it, y) => it.Id).ToList();
|
||||
|
||||
|
||||
var xxx = DynamicCoreHelper.GetMember(typeof(UnitPerson011), typeof(int), "it", $"it.Address.Id ");
|
||||
var list7= db.Queryable<UnitPerson011>().Select("it", $"it.Address.Id ", typeof(int)).ToList();
|
||||
|
||||
}
|
||||
public class SqlSugarTypeProvider : DefaultDynamicLinqCustomTypeProvider
|
||||
{
|
||||
|
Reference in New Issue
Block a user