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.
Subsonic2.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>() ...