7.4.4 Creating the Entity Framework Context; Listing 7-12. The Content of the EFDbContext.cs File
parent
f2c0d2ca09
commit
cacc3e1580
|
@ -0,0 +1,10 @@
|
||||||
|
using SportsStore.Domain.Entities;
|
||||||
|
using System.Data.Entity;
|
||||||
|
|
||||||
|
namespace SportsStore.Domain.Concrete
|
||||||
|
{
|
||||||
|
public class EFDbContext : DbContext
|
||||||
|
{
|
||||||
|
public DbSet<Product> Products { get; set; }
|
||||||
|
}
|
||||||
|
}
|
|
@ -73,6 +73,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Abstract\IProductRepository.cs" />
|
<Compile Include="Abstract\IProductRepository.cs" />
|
||||||
|
<Compile Include="Concrete\EFDbContext.cs" />
|
||||||
<Compile Include="Entities\Product.cs" />
|
<Compile Include="Entities\Product.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
Loading…
Reference in New Issue