Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 4th, 2012  |  syntax: None  |  size: 0.27 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Could not format node 'Link' for execution as SQL
  2. Table1 with
  3. Name,
  4. Address
  5. CityID(foreign key from Table2)
  6.  
  7. and Table2 with
  8.  
  9. CityID,
  10. CityName.
  11.        
  12. var Person = from person in db.Table1
  13.                 orderby person.Table2.CityName
  14.                 select person;