Exemplo n.º 1
0
 public async Task <TEntity> FindByIdAsync(int Id)
 {
     using var context = new UdemyBlogWebSiteContext();
     return(await context.FindAsync <TEntity>(Id));
 }