sqlkata/querybuilder

How can I generic `where column>1+column1`?

Cricle opened this issue · 3 comments

I try to use Where but only can simple unary expression.

With expression you need use Raw method (WhereRaw,HavingRaw,OrderByRaw....)

as @kenzouno1 said, using .WhereRaw() is the best in this case.
Does this answer your question?

Thanks.