Beispiel #1
0
        public async void Update_Entity_Is_Not_Tracked()
        {
            Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext();
            var          repository      = new DeviceActionRepository(loggerMoc.Object, context);
            DeviceAction entity          = new DeviceAction();

            context.Set <DeviceAction>().Add(entity);
            await context.SaveChangesAsync();

            await repository.Update(new DeviceAction());

            var modifiedRecord = context.Set <DeviceAction>().FirstOrDefaultAsync();

            modifiedRecord.Should().NotBeNull();
        }
Beispiel #2
0
        public async void Update_Entity_Is_Not_Tracked()
        {
            Mock <ILogger <DeviceActionRepository> > loggerMoc = DeviceActionRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = DeviceActionRepositoryMoc.GetContext();
            var          repository      = new DeviceActionRepository(loggerMoc.Object, context);
            DeviceAction entity          = new DeviceAction();

            entity.SetProperties(default(int), "B", 1, "B");
            context.Set <DeviceAction>().Add(entity);
            await context.SaveChangesAsync();

            context.Entry(entity).State = EntityState.Detached;

            await repository.Update(entity);

            var records = await context.Set <DeviceAction>().ToListAsync();

            records.Count.Should().Be(2);
        }