WhereCascade的使用方法 #1388
hellosnowy
started this conversation in
General
Replies: 1 comment 3 replies
-
var query = fsql.Select<T1>().WhereCascade(a => ...)
.From<T2, T3, T4>((_, b, c, d) => _)
.LeftJoin(w => w.t1.id == w. t2.mid)
... |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Iselect的WhereCascade方法有没有具体的使用实例?
我测试只能单表,
多表例如
fsql.Select<t1,t2,t3,t4....>().LeftJoin(w=>w.t1.id==w.t2.mid)
,这种查询后面就不能加WhereCascade了?
Beta Was this translation helpful? Give feedback.
All reactions