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