Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要 sqlkata 中的一些高级 SQL 功能,例如在投影中外部应用 IIF 表达式。有没有办法在 sqlkata 中创建这样的查询?
实现这一点的唯一方法是使用该SelectRaw方法。
SelectRaw
query.SelectRaw("IIF(a > b, 'larger', 'smaller') as col").Select("Id");