Skip to content

Instantly share code, notes, and snippets.

@Blind-Striker
Created September 6, 2017 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Blind-Striker/3aed645ce608d1d642dd9c846e9c698d to your computer and use it in GitHub Desktop.
Save Blind-Striker/3aed645ce608d1d642dd9c846e9c698d to your computer and use it in GitHub Desktop.
EF Core 2.0 String Interpolation Example for Article
var city = "İstanbul";
using (var context = CreateContext())
{
context.Customers.FromSql($@"
SELECT *
FROM Customers
WHERE City = {city}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment