引入 EntityFramework 套件

1 篇文章 / 0 new
author
引入 EntityFramework 套件
加入 Entity Framework 6.1 套件
引入後可觀察專案的結構變化
1. 增加兩項參考資源
2. web.config 內也會增加一些設定
<configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>
...
<entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
    <providers>
      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
    </providers>
  </entityFramework>
參考資源:
Free Web Hosting