1
我在EntityDataSource CommandText
中寫下如下查詢。在EntityDataSource CommandText中使用ISNULL函數
SELECT FIRST_NAME + ' ' + ISNULL(LAST_NAME, '') AS Customer
FROM CUSTOMER
但存在錯誤,因爲isnull cannot be resolved into valid type or function
。
我解決這個問題有多冷?我應該用什麼來代替ISNULL
?
[相當於LINQ中的SQL ISNULL?]的可能的重複(http://stackoverflow.com/questions/413084/equivalent-of-sql-isnull-in-linq) – RichardTheKiwi
@RichardTheKiwi我試過了。但是在那裏使用'?'出現錯誤。 – Bishan
嘗試COALESCE => COALESCE(LAST_NAME,'') – fnurglewitz