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