您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }