Updated Query from Multi Tables (markdown)

2881099
2025-12-12 21:33:59 +08:00
parent 96bc6cf26a
commit 1d5b7f426f

@@ -78,7 +78,8 @@ fsql.Select<Topic, Category, CategoryType>()
> Experience: [One-to-many, only the last record is taken from the associated table ](https://github.com/dotnetcore/FreeSql/issues/430)
3、WithoutJoin
## 3、WithoutJoin
fsql.Select<Order, Product, User>()
.InnerJoin((o, p, u) => o.UserId == u.Id)
.LeftJoin((o, p, u) => o.ProductId == p.Id)