您好,登錄后才能下訂單哦!
本篇內容主要講解“Entity Framework中如何使用DataBase First模式實現增刪改查”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Entity Framework中如何使用DataBase First模式實現增刪改查”吧!
然后點擊添加
自動添加了EntityFramework的引用。同時會在項目的根目錄下面生成一個package文件夾:
package文件夾里面存放的是與EntityFramework有關的文件:
查看生成的配置文件:
ConfigSections節點里面有一個section段的name為entityFramework,下面有一個節點的名稱就是該section段name的值。如果想在其他地方使用EF的配置信息,那么需要把configSections、connectionStrings、entityFramework三個節點都需要拷貝過去,并且configSections節點是在所有節點的最前面。
.tt文件下面生成的就是數據庫表對應的實體類,并且是但是形式的。
在edmx文件上面右鍵選擇打開方式,選擇XML(文本)編輯器方式打開:
文件的整個結構如下:
<?xml version="1.0" encoding="utf-8"?> <edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx"> <!-- EF Runtime content --> <edmx:Runtime> <!-- SSDL content --> <edmx:StorageModels> <Schema Namespace="StudentSystemModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2012" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl"> <EntityType Name="Student"> <Key> <PropertyRef Name="StudentID" /> </Key> <Property Name="StudentID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" /> <Property Name="StudentName" Type="varchar" MaxLength="16" /> <Property Name="Sex" Type="varchar" MaxLength="8" /> <Property Name="Age" Type="int" /> <Property Name="Major" Type="varchar" MaxLength="32" /> <Property Name="Email" Type="varchar" MaxLength="32" /> </EntityType> <EntityContainer Name="StudentSystemModelStoreContainer"> <EntitySet Name="Student" EntityType="Self.Student" Schema="dbo" store:Type="Tables" /> </EntityContainer> </Schema> </edmx:StorageModels> <!-- CSDL content --> <edmx:ConceptualModels> <Schema Namespace="StudentSystemModel" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm"> <EntityType Name="Student"> <Key> <PropertyRef Name="StudentID" /> </Key> <Property Name="StudentID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" /> <Property Name="StudentName" Type="String" MaxLength="16" FixedLength="false" Unicode="false" /> <Property Name="Sex" Type="String" MaxLength="8" FixedLength="false" Unicode="false" /> <Property Name="Age" Type="Int32" /> <Property Name="Major" Type="String" MaxLength="32" FixedLength="false" Unicode="false" /> <Property Name="Email" Type="String" MaxLength="32" FixedLength="false" Unicode="false" /> </EntityType> <EntityContainer Name="StudentSystemEntities" annotation:LazyLoadingEnabled="true"> <EntitySet Name="Students" EntityType="Self.Student" /> </EntityContainer> </Schema> </edmx:ConceptualModels> <!-- C-S mapping content --> <edmx:Mappings> <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs"> <EntityContainerMapping StorageEntityContainer="StudentSystemModelStoreContainer" CdmEntityContainer="StudentSystemEntities"> <EntitySetMapping Name="Students"> <EntityTypeMapping TypeName="StudentSystemModel.Student"> <MappingFragment StoreEntitySet="Student"> <ScalarProperty Name="StudentID" ColumnName="StudentID" /> <ScalarProperty Name="StudentName" ColumnName="StudentName" /> <ScalarProperty Name="Sex" ColumnName="Sex" /> <ScalarProperty Name="Age" ColumnName="Age" /> <ScalarProperty Name="Major" ColumnName="Major" /> <ScalarProperty Name="Email" ColumnName="Email" /> </MappingFragment> </EntityTypeMapping> </EntitySetMapping> </EntityContainerMapping> </Mapping> </edmx:Mappings> </edmx:Runtime> <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) --> <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx"> <Connection> <DesignerInfoPropertySet> <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" /> </DesignerInfoPropertySet> </Connection> <Options> <DesignerInfoPropertySet> <DesignerProperty Name="ValidateOnBuild" Value="true" /> <DesignerProperty Name="EnablePluralization" Value="true" /> <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" /> <DesignerProperty Name="UseLegacyProvider" Value="false" /> <DesignerProperty Name="CodeGenerationStrategy" Value="無" /> </DesignerInfoPropertySet> </Options> <!-- Diagram content (shape and connector positions) --> <Diagrams></Diagrams> </Designer> </edmx:Edmx>
其中SSDL content定義的是數據庫表的結構:
CSDL content定義的是實體類的結構:
C-S mapping content定義的是實體類和數據庫表的映射關系:
從C-S mapping content節點中可以看出,EF為什么會自動生成實體類,或者通過實體類為什么能操作數據庫的數據了。
從這里可以看出EF做的第一件事情:取數據庫的數據表結構,生成實體類,在表和實體之間自動建立映射關系。
T4模板:從edmx中取數據結構,按照模板生成對應格式的實體類。
//------------------------------------------------------------------------------ // <auto-generated> // 此代碼已從模板生成。 // // 手動更改此文件可能導致應用程序出現意外的行為。 // 如果重新生成代碼,將覆蓋對此文件的手動更改。 // </auto-generated> //------------------------------------------------------------------------------ namespace EFDbFirstDemo { using System; using System.Data.Entity; using System.Data.Entity.Infrastructure; public partial class StudentSystemEntities : DbContext { public StudentSystemEntities() : base("name=StudentSystemEntities") { } protected override void OnModelCreating(DbModelBuilder modelBuilder) { throw new UnintentionalCodeFirstException(); } public virtual DbSet<Student> Students { get; set; } } }
StudentSystemEntities繼承自DbContext,用來操作數據庫。
到此,相信大家對“Entity Framework中如何使用DataBase First模式實現增刪改查”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。