<?xml version="1.0" encoding="utf-8"?> <edmx:Edmx Version="2.0" xmlns:edmx="http://schemas.microsoft.com/ado/2008/10/edmx"> <!-- EF Runtime content --> <edmx:Runtime> <!-- SSDL content --> <edmx:StorageModels> <Schema Namespace="DeleteModel.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2008" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl"> <EntityContainer Name="DeleteModelStoreContainer"> <EntitySet Name="Die" EntityType="DeleteModel.Store.Die" store:Type="Tables" Schema="dbo" /> </EntityContainer> <EntityType Name="Die"> <Key> <PropertyRef Name="DieId" /> </Key> <Property Name="DieId" Type="bigint" Nullable="false" StoreGeneratedPattern="Identity" /> <Property Name="DieName" Type="varchar" MaxLength="50" /> </EntityType> </Schema> </edmx:StorageModels> <!-- CSDL content --> <edmx:ConceptualModels> <Schema Namespace="DeleteModel" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2008/09/edm"> <EntityContainer Name="DeleteEntities" annotation:LazyLoadingEnabled="true"> <EntitySet Name="Dies" EntityType="DeleteModel.Die" /> </EntityContainer> <EntityType Name="Die"> <Key> <PropertyRef Name="DieId" /> </Key> <Property Name="DieId" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" /> <Property Name="DieName" Type="String" MaxLength="50" Unicode="false" FixedLength="false" /> </EntityType> </Schema> </edmx:ConceptualModels> <!-- C-S mapping content --> <edmx:Mappings> <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2008/09/mapping/cs"> <EntityContainerMapping StorageEntityContainer="DeleteModelStoreContainer" CdmEntityContainer="DeleteEntities"> <EntitySetMapping Name="Dies"><EntityTypeMapping TypeName="DeleteModel.Die"><MappingFragment StoreEntitySet="Die"> <ScalarProperty Name="DieId" ColumnName="DieId" /> <ScalarProperty Name="DieName" ColumnName="DieName" /> </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/2008/10/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" /> </DesignerInfoPropertySet> </Options> <!-- Diagram content (shape and connector positions) --> <Diagrams> <Diagram Name="LateModel"> <EntityTypeShape EntityType="DeleteModel.Die" Width="1.5" PointX="0.75" PointY="0.75" Height="1.4033821614583331" IsExpanded="true" /> </Diagram> </Diagrams> </Designer> </edmx:Edmx>Dosyayı İndir