Skip to content

Instantly share code, notes, and snippets.

@Suchiman
Created November 13, 2014 20:51
Show Gist options
  • Select an option

  • Save Suchiman/5041c72b479f7b95730d to your computer and use it in GitHub Desktop.

Select an option

Save Suchiman/5041c72b479f7b95730d to your computer and use it in GitHub Desktop.
-- var something = db.Product.Where(x => x.Name.StartsWith("wtf")).Select(x => new { some = x.ProductID }).ToList();
SELECT
[t1].[ProductID]
FROM
[Products] [t1]
WHERE
[t1].[ProductName] LIKE 'wtf%'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment