選択できるのは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. }