public MultipleQueriesEfMiddleware(RequestDelegate next, EfDb db)
 {
     _next = next;
     _db   = db;
 }
 public SingleQueryEfMiddleware(RequestDelegate next, EfDb db)
 {
     _next = next;
     _db   = db;
 }
示例#3
0
 public FortunesEfMiddleware(RequestDelegate next, EfDb db, HtmlEncoder htmlEncoder)
 {
     _next        = next;
     _db          = db;
     _htmlEncoder = htmlEncoder;
 }