Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created May 24, 2022 17:04
Show Gist options
  • Save lgolubyev/eccd1cfa16f0741031ac9328dfcf323b to your computer and use it in GitHub Desktop.
Save lgolubyev/eccd1cfa16f0741031ac9328dfcf323b to your computer and use it in GitHub Desktop.
var sql = @"Update [User] SET FirstName = @FirstName WHERE Id = @Id";
context.Database.ExecuteSqlCommand(
sql,
new SqlParameter("@FirstName", firstname),
new SqlParameter("@Id", id));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment