1

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


Jonathan Leffler
  • 730,956
  • 141
  • 904
  • 1,278
Cheung
  • 15,293
  • 19
  • 63
  • 93

1 Answers1

4

It is a documentation problem. Try System.String instead of Edm.String.

Devart
  • 119,203
  • 23
  • 166
  • 186