Skip to content

Instantly share code, notes, and snippets.

@masoodwasim
Created March 4, 2020 18:54
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/bfee7967fe76fb3c2f2977583c66f276 to your computer and use it in GitHub Desktop.
Save masoodwasim/bfee7967fe76fb3c2f2977583c66f276 to your computer and use it in GitHub Desktop.
public async Task<BookModel> GetBook(int id)
{
using (IDbConnection db = new SqlConnection(Configuration.GetConnectionString("SampleDB"))
{
var result= await db.Query<BookModel>("Select * From Book" +
WHERE Id = @Id", new { id }).SingleOrDefault();
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment