From 64e9d81f8a99732cb86e1ce3a50e8b5c5db25586 Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Thu, 3 Apr 2025 17:23:52 +0800 Subject: [PATCH] Update demo --- .../UserTestCases/UnitTest/UnitStringToExp.cs | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/UnitStringToExp.cs b/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/UnitStringToExp.cs index 076496bfb..4540fb3c8 100644 --- a/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/UnitStringToExp.cs +++ b/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/UnitTest/UnitStringToExp.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using System.Linq.Dynamic.Core; using System.Linq.Dynamic.Core.CustomTypeProviders; +using System.Net; using System.Text; using static OrmTest.UnitOneToManyFiltersadfa; @@ -146,7 +147,25 @@ namespace OrmTest "it.Address as Address" } ) - .ToList(); + .ToList(); + var list66666 = db.Queryable() + .Includes(it => it.Address) + .Select(it=>new + { + addid= it.Address.Id, + Address=it.Address + }) + .ToList(); + var list6666 = db.Queryable() + .Includes(it => it.Address) + .Select("it", + new List() + { + " new(it.Address.Id) as addid" , + "it.Address as Address" + } + ) + .ToList(); var xxx = DynamicCoreHelper.GetMember(typeof(UnitPerson011), typeof(int), "it", $"it.Address.Id "); var list7= db.Queryable().Select("it", $"it.Address.Id ",typeof(UnitPerson011), typeof(int)).ToList(); var list8 = db.Queryable().Select("it", $"new(it.Id as Id, it.Name)", typeof(Order)).ToList();