예제 #1
0
 public PetSQLiteRepository(PetAppDBContext ctx)
 {
     _ctx = ctx;
 }
 public TypePetSQLRepository(PetAppDBContext context)
 {
     _ctx = context;
 }
예제 #3
0
 public PetSQLRepository(PetAppDBContext context)
 {
     context.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
     _ctx = context;
 }
예제 #4
0
 public UserSQLRepository(PetAppDBContext context)
 {
     _ctx = context;
 }