Skip to content

Instantly share code, notes, and snippets.

@masoodwasim
Last active March 4, 2020 19:03
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 masoodwasim/6434bb077510dfa5636926f074b0a144 to your computer and use it in GitHub Desktop.
Save masoodwasim/6434bb077510dfa5636926f074b0a144 to your computer and use it in GitHub Desktop.
public int Update(BookModel bookModel)
{
using (IDbConnection db = new SqlConnection(Configuration.GetConnectionString("SampleDB"))
{
string sqlQuery ="UPDATE Book SET Title = @Title, " +
"Author = @Author" + "WHERE Id = @Id";
int rowsAffected = db.Execute(sqlQuery, author);
return rowsAffected;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment