Guest User

Untitled

a guest
Jan 22nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. var query = from c in ctx.VoyageAccounts where c.STATUS == "a" select c;
  2.  
  3. var query = from x in ctx.VoyageAccounts
  4. where x.BALLAST_LEG == 1
  5. select (new VoyageAccountsDTO{ value = x.SHIP, value1 = x.SHIP_CODE });
Add Comment
Please, Sign In to add comment