Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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