Skip to content

Commit

Permalink
#69 , added missing properties from test context interface and implem…
Browse files Browse the repository at this point in the history
…ented them
  • Loading branch information
bilal-fazlani committed Nov 4, 2015
1 parent 37e9943 commit b8fada2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions TrackerEnabledDbContext.Common.Testing/ITestDbContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@ public interface ITestDbContext : ITrackerContext
DbSet<ModelWithCompositeKey> ModelsWithCompositeKey { get; set; }
DbSet<ModelWithConventionalKey> ModelsWithConventionalKey { get; set; }
DbSet<ModelWithSkipTracking> ModelsWithSkipTracking { get; set; }
DbSet<POCO> POCOs { get; set; }
DbSet<TrackedModelWithMultipleProperties> TrackedModelsWithMultipleProperties { get; set; }
DbSet<TrackedModelWithCustomTableAndColumnNames> TrackedModelsWithCustomTableAndColumnNames { get; set; }
DbSet<SoftDeletableModel> SoftDeletableModels { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,7 @@ public TestTrackerIdentityContext()
public DbSet<ModelWithSkipTracking> ModelsWithSkipTracking { get; set; }
public DbSet<POCO> POCOs { get; set; }
public DbSet<TrackedModelWithMultipleProperties> TrackedModelsWithMultipleProperties { get; set; }
public DbSet<TrackedModelWithCustomTableAndColumnNames> TrackedModelsWithCustomTableAndColumnNames { get; set; }
public DbSet<SoftDeletableModel> SoftDeletableModels { get; set; }
}
}

0 comments on commit b8fada2

Please sign in to comment.