From 7fb9e1b6d72574206cb12f1e37f07bf8c896e2a0 Mon Sep 17 00:00:00 2001 From: 2881099 <2881099@users.noreply.github.com> Date: Thu, 14 Dec 2023 19:40:29 +0800 Subject: [PATCH] =?UTF-8?q?Updated=20=E6=9F=A5=E8=AF=A2=20(markdown)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 查询.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/查询.md b/查询.md index c932c42..0eade28 100644 --- a/查询.md +++ b/查询.md @@ -100,9 +100,12 @@ fsql.Select().WhereDynamicFilter(dyfilter).ToList(); //WHERE id = 1 AND (id = 2 OR id = 3) ``` -> 动态表名:ISelect.AsTable((t, old) => $"{old}_201903")> +> 动态表名:ISelect.AsTable((t, old) => $"{old}_201903") + > 动态排序:ISelect.OrderByPropertyName("Parent.Code") + > 动态返回:ISelect.ToDataTableByPropertyName(new string[] { "Parent.Code", "Id" }) + > 动态贪婪加载:ISelect.IncludeByPropertyName("Parent.Parent").IncludeByPropertyName("Parent.Childs") ## API