Created
December 21, 2016 10:16
-
-
Save abel-masila/2c71ee2827a8e5a52af6e7e982f9c7be to your computer and use it in GitHub Desktop.
Db Context
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ProductsApp.Models; | |
using System; | |
using System.Collections.Generic; | |
using System.Data.Entity; | |
using System.Linq; | |
using System.Web; | |
namespace ProductsApp.Context | |
{ | |
public class ProductContext:DbContext | |
{ | |
public DbSet<Product> Products { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment