You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DbOutputCacheDbo.cs 256B

123456789101112
  1. using System;
  2. using System.Data.Entity;
  3. namespace CacheControl.DBO
  4. {
  5. public class DbOutputCacheDbo<T> where T : class
  6. {
  7. public Func<DbContext> GetDb { get; set; }
  8. public Func<DbContext, DbSet<T>> GetTable { get; set; }
  9. }
  10. }