From c450176aecb732819e0e24fcd4e4789588527a1b Mon Sep 17 00:00:00 2001 From: 28810 <28810@YEXIANGQIN> Date: Sat, 11 May 2019 07:26:13 +0800 Subject: [PATCH] update --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 5877d7f9..de349b73 100644 --- a/readme.md +++ b/readme.md @@ -74,7 +74,7 @@ class Tag { //OneToOne、ManyToOne var t0 = fsql.Select() .Where(a => a.Parent.Parent.Name == "粤语") - .Include(a => a.Tags, then => then.Where(sub => sub.Name == "xxx")) + .Include(a => a.Tags, then => then.Where(sub => sub.Name == "xxx")) .ToList(); //OneToMany @@ -87,7 +87,7 @@ var t1 = fsql.Select() var t2 = fsql.Select() .Where(s => s.Tags.AsSelect() .Any(t => t.Name == "国语")) - .Include(a => a.Tags, then => then.Where(sub => sub.Name == "xxx")) + .Include(a => a.Tags, then => then.Where(sub => sub.Name == "xxx")) .ToList(); //Other