コード例 #1
0
 public VotoRepository(PokerContext context) : base(context)
 {
 }
コード例 #2
0
 public CartaRepository(PokerContext context) : base(context)
 {
 }
コード例 #3
0
 public HistoriaRepository(PokerContext context) : base(context)
 {
 }
コード例 #4
0
 public BaseRepository(PokerContext context)
 {
     _context = context;
     _context.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
     this.dbSet = context.Set <T>();
 }