From 751c641ba56ac384b44488e3af4c192829d9faf8 Mon Sep 17 00:00:00 2001 From: 2881099 <2881099@qq.com> Date: Fri, 3 Mar 2023 10:28:12 +0800 Subject: [PATCH] update --- Query-from-Multi-Tables.md | 6 +++--- 多表查询.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Query-from-Multi-Tables.md b/Query-from-Multi-Tables.md index 68a485e..d8c4516 100644 --- a/Query-from-Multi-Tables.md +++ b/Query-from-Multi-Tables.md @@ -218,9 +218,9 @@ fsql.Select() .GroupBy(a => new { a.Author }) .WithTempQuery(a => new { Author = a.Key.Author, Count = a.Count() }) .ToList(a => new { - a.Author, a.Count, - list1 = fsql.Select().ToList(), - list2 = fsql.Select().Where(b => b.Author == a.Author).ToList() + a.Author, a.Count, + list1 = fsql.Select().ToList(), + list2 = fsql.Select().Where(b => b.Author == a.Author).ToList() }); ``` diff --git a/多表查询.md b/多表查询.md index e6ef41c..0540c34 100644 --- a/多表查询.md +++ b/多表查询.md @@ -190,9 +190,9 @@ fsql.Select() .GroupBy(a => new { a.Author }) .WithTempQuery(a => new { Author = a.Key.Author, Count = a.Count() }) .ToList(a => new { - a.Author, a.Count, - list1 = fsql.Select().ToList(), - list2 = fsql.Select().Where(b => b.Author == a.Author).ToList() + a.Author, a.Count, + list1 = fsql.Select().ToList(), + list2 = fsql.Select().Where(b => b.Author == a.Author).ToList() }); ```