public void Migrate() { var chainItem1 = new Chain(); chainItem1.SetProperties(1, Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"), 1, "A", 1); this.context.Chains.Add(chainItem1); var chainStatusItem1 = new ChainStatus(); chainStatusItem1.SetProperties(1, "A"); this.context.ChainStatus.Add(chainStatusItem1); var claspItem1 = new Clasp(); claspItem1.SetProperties(1, 1, 1); this.context.Clasps.Add(claspItem1); var linkItem1 = new Link(); linkItem1.SetProperties(1, 1, DateTime.Parse("1/1/1987 12:00:00 AM"), DateTime.Parse("1/1/1987 12:00:00 AM"), "A", Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"), 1, 1, "A", 1, "A", "A", 1); this.context.Links.Add(linkItem1); var linkLogItem1 = new LinkLog(); linkLogItem1.SetProperties(DateTime.Parse("1/1/1987 12:00:00 AM"), 1, 1, "A"); this.context.LinkLogs.Add(linkLogItem1); var linkStatusItem1 = new LinkStatus(); linkStatusItem1.SetProperties(1, "A"); this.context.LinkStatus.Add(linkStatusItem1); var machineItem1 = new Machine(); machineItem1.SetProperties("A", 1, "A", "A", Guid.Parse("8420cdcf-d595-ef65-66e7-dff9f98764da"), "A"); this.context.Machines.Add(machineItem1); var machineRefTeamItem1 = new MachineRefTeam(); machineRefTeamItem1.SetProperties(1, 1, 1); this.context.MachineRefTeams.Add(machineRefTeamItem1); var organizationItem1 = new Organization(); organizationItem1.SetProperties(1, "A"); this.context.Organizations.Add(organizationItem1); var teamItem1 = new Team(); teamItem1.SetProperties(1, "A", 1); this.context.Teams.Add(teamItem1); var versionInfoItem1 = new VersionInfo(); versionInfoItem1.SetProperties(DateTime.Parse("1/1/1987 12:00:00 AM"), "A", 1); this.context.VersionInfoes.Add(versionInfoItem1); this.context.SaveChanges(); }
public async virtual Task <LinkLog> Create(LinkLog item) { this.Context.Set <LinkLog>().Add(item); await this.Context.SaveChangesAsync(); this.Context.Entry(item).State = EntityState.Detached; return(item); }
public async void Create() { Mock <ILogger <LinkLogRepository> > loggerMoc = LinkLogRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = LinkLogRepositoryMoc.GetContext(); var repository = new LinkLogRepository(loggerMoc.Object, context); var entity = new LinkLog(); await repository.Create(entity); var record = await context.Set <LinkLog>().FirstOrDefaultAsync(); record.Should().NotBeNull(); }
public async void Get() { Mock <ILogger <LinkLogRepository> > loggerMoc = LinkLogRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = LinkLogRepositoryMoc.GetContext(); var repository = new LinkLogRepository(loggerMoc.Object, context); LinkLog entity = new LinkLog(); context.Set <LinkLog>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); record.Should().NotBeNull(); }
public async virtual Task Delete( int id) { LinkLog record = await this.GetById(id); if (record == null) { return; } else { this.Context.Set <LinkLog>().Remove(record); await this.Context.SaveChangesAsync(); } }
public async virtual Task Update(LinkLog item) { var entity = this.Context.Set <LinkLog>().Local.FirstOrDefault(x => x.Id == item.Id); if (entity == null) { this.Context.Set <LinkLog>().Attach(item); } else { this.Context.Entry(entity).CurrentValues.SetValues(item); } await this.Context.SaveChangesAsync(); }
public async void Create() { Mock <ILogger <LinkLogRepository> > loggerMoc = LinkLogRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = LinkLogRepositoryMoc.GetContext(); var repository = new LinkLogRepository(loggerMoc.Object, context); var entity = new LinkLog(); entity.SetProperties(default(int), DateTime.Parse("1/1/1988 12:00:00 AM"), 1, "B"); await repository.Create(entity); var records = await context.Set <LinkLog>().ToListAsync(); records.Count.Should().Be(2); }
public async void Delete() { Mock <ILogger <LinkLogRepository> > loggerMoc = LinkLogRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = LinkLogRepositoryMoc.GetContext(); var repository = new LinkLogRepository(loggerMoc.Object, context); LinkLog entity = new LinkLog(); context.Set <LinkLog>().Add(entity); await context.SaveChangesAsync(); await repository.Delete(entity.Id); LinkLog modifiedRecord = await context.Set <LinkLog>().FirstOrDefaultAsync(); modifiedRecord.Should().BeNull(); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <LinkLogRepository> > loggerMoc = LinkLogRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = LinkLogRepositoryMoc.GetContext(); var repository = new LinkLogRepository(loggerMoc.Object, context); LinkLog entity = new LinkLog(); context.Set <LinkLog>().Add(entity); await context.SaveChangesAsync(); await repository.Update(new LinkLog()); var modifiedRecord = context.Set <LinkLog>().FirstOrDefaultAsync(); modifiedRecord.Should().NotBeNull(); }
public async void Get() { Mock <ILogger <LinkLogRepository> > loggerMoc = LinkLogRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = LinkLogRepositoryMoc.GetContext(); var repository = new LinkLogRepository(loggerMoc.Object, context); LinkLog entity = new LinkLog(); entity.SetProperties(default(int), DateTime.Parse("1/1/1988 12:00:00 AM"), 1, "B"); context.Set <LinkLog>().Add(entity); await context.SaveChangesAsync(); var record = await repository.Get(entity.Id); record.Should().NotBeNull(); }
public async void Update_Entity_Is_Not_Tracked() { Mock <ILogger <LinkLogRepository> > loggerMoc = LinkLogRepositoryMoc.GetLoggerMoc(); ApplicationDbContext context = LinkLogRepositoryMoc.GetContext(); var repository = new LinkLogRepository(loggerMoc.Object, context); LinkLog entity = new LinkLog(); entity.SetProperties(default(int), DateTime.Parse("1/1/1988 12:00:00 AM"), 1, "B"); context.Set <LinkLog>().Add(entity); await context.SaveChangesAsync(); context.Entry(entity).State = EntityState.Detached; await repository.Update(entity); var records = await context.Set <LinkLog>().ToListAsync(); records.Count.Should().Be(2); }