How to String Concatenation in Entity SQL?
A very quick question
SQL:
SELECT VALUE ROW( ('#' + CAST(pack.PackageID as Edm.String)) as PackageID) From ProductPackage
It show error, edm.String not found, I also try String or Varchar,still error.
I have read that reference but no help.
开发者_运维百科http://msdn.microsoft.com/en-us/library/bb386905.aspx
It is a documentation problem. Try System.String
instead of Edm.String
.
精彩评论