Ejemplo n.º 1
0
        public async void Update_Entity_Is_Not_Tracked()
        {
            Mock <ILogger <DeviceRepository> > loggerMoc = DeviceRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = DeviceRepositoryMoc.GetContext();
            var    repository            = new DeviceRepository(loggerMoc.Object, context);
            Device entity = new Device();

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

            await repository.Update(new Device());

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

            modifiedRecord.Should().NotBeNull();
        }
Ejemplo n.º 2
0
        public async void Update_Entity_Is_Not_Tracked()
        {
            Mock <ILogger <DeviceRepository> > loggerMoc = DeviceRepositoryMoc.GetLoggerMoc();
            ApplicationDbContext context = DeviceRepositoryMoc.GetContext();
            var    repository            = new DeviceRepository(loggerMoc.Object, context);
            Device entity = new Device();

            entity.SetProperties(default(int), DateTime.Parse("1/1/1988 12:00:00 AM"), true, "B", Guid.Parse("3842cac4-b9a0-8223-0dcc-509a6f75849b"));
            context.Set <Device>().Add(entity);
            await context.SaveChangesAsync();

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

            await repository.Update(entity);

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

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