Simple.Data coalesce operation in select statement -
can 1 on translating below t-sql statement
simple.data query
select isnull(a.somevalue,b.somevalue),t.id table1 t1 left outer join atable on t1.aid = a.id left outer join btable b on t1.bid = b.id
simple.data doesn't support coalescing in t-sql. standard way around put query in stored procedure , use simple.data call sproc. details can found enter link description here.
Comments
Post a Comment