How can I generic `where column>1+column1`?
Cricle opened this issue · 3 comments
Cricle commented
I try to use Where
but only can simple unary expression.
kenzouno1 commented
With expression
you need use Raw
method (WhereRaw,HavingRaw,OrderByRaw....)
ahmad-moussawi commented
as @kenzouno1 said, using .WhereRaw()
is the best in this case.
Does this answer your question?
Cricle commented
Thanks.