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.
我想使用 Subsonic 2.2 创建以下查询:
SELECT coalesce(col1, col2) AS result FROM someTable
与此类似的东西:
DAL.DB.Select( string.Format("COALESCE({0}, {2}) as result", DAL.SomeTable.Columns.col1, DAL.SomeTable.Columns.col2 )) .From<DAL.SomeTable>() ...