<?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="ExampleModel.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="ExampleModelStoreContainer">
<EntitySet Name="Sample" EntityType="ExampleModel.Store.Sample" store:Type="Tables" Schema="dbo" />
</EntityContainer>
<EntityType Name="Sample">
<Key>
<PropertyRef Name="SampleId" />
</Key>
<Property Name="SampleId" Type="bigint" Nullable="false" StoreGeneratedPattern="Identity" />
<Property Name="SampleName" Type="varchar" MaxLength="50" />
<Property Name="SampleValue" Type="float" />
</EntityType>
</Schema>
</edmx:StorageModels>
<!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="ExampleModel" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
<EntityContainer Name="ExampleEntities" annotation:LazyLoadingEnabled="true">
<EntitySet Name="Samples" EntityType="ExampleModel.Sample" />
</EntityContainer>
<EntityType Name="Sample">
<Key>
<PropertyRef Name="SampleId" />
</Key>
<Property Name="SampleId" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="SampleName" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
<Property Name="SampleValue" Type="Double" />
</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="ExampleModelStoreContainer" CdmEntityContainer="ExampleEntities">
<EntitySetMapping Name="Samples"><EntityTypeMapping TypeName="ExampleModel.Sample"><MappingFragment StoreEntitySet="Sample">
<ScalarProperty Name="SampleId" ColumnName="SampleId" />
<ScalarProperty Name="SampleName" ColumnName="SampleName" />
<ScalarProperty Name="SampleValue" ColumnName="SampleValue" />
</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="EntityModel">
<EntityTypeShape EntityType="ExampleModel.Sample" Width="1.5" PointX="0.75" PointY="0.75" Height="1.59568359375" IsExpanded="true" />
</Diagram>
</Diagrams>
</Designer>
</edmx:Edmx>
Dosyayı İndir