public ProAgilDataRepository(ProAgilDataContext dataContext)
 {
     DataContext = dataContext;
     DataContext.ChangeTracker.QueryTrackingBehavior = Microsoft.EntityFrameworkCore.QueryTrackingBehavior.NoTracking;
 }
Ejemplo n.º 2
0
 public ProAgilRepository(ProAgilDataContext context)
 {
     _context = context;
     _context.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
 }
 public ProAgilPalestranteRepository(ProAgilDataContext dataContext) : base(dataContext)
 {
 }
 public ProAgilEventoRepository(ProAgilDataContext dataContext) : base(dataContext)
 {
 }