Exemplo n.º 1
0
 public void DbSet_properties_are_detected_and_initialized()
 {
     using (var context = new DbSetVariant())
     {
         Assert.NotNull(context.UnicornProducts);
         Assert.NotNull(context.UnicornCategories);
         context.Assert<Product>().IsInModel();
         context.Assert<Category>().IsInModel();
     }
 }