<?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="MvcJQueryModel.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="MvcJQueryModelStoreContainer"> <EntitySet Name="Sample" EntityType="MvcJQueryModel.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" /> <Property Name="SampleDate" Type="date" /> </EntityType> </Schema> </edmx:StorageModels> <!-- CSDL content --> <edmx:ConceptualModels> <Schema Namespace="MvcJQueryModel" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2008/09/edm"> <EntityContainer Name="MvcJQueryDB" annotation:LazyLoadingEnabled="true"> <EntitySet Name="Samples" EntityType="MvcJQueryModel.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" /> <Property Name="SampleDate" Type="DateTime" /> </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="MvcJQueryModelStoreContainer" CdmEntityContainer="MvcJQueryDB"> <EntitySetMapping Name="Samples"><EntityTypeMapping TypeName="MvcJQueryModel.Sample"><MappingFragment StoreEntitySet="Sample"> <ScalarProperty Name="SampleId" ColumnName="SampleId" /> <ScalarProperty Name="SampleName" ColumnName="SampleName" /> <ScalarProperty Name="SampleValue" ColumnName="SampleValue" /> <ScalarProperty Name="SampleDate" ColumnName="SampleDate" /> </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="MvcJQueryModel"> <EntityTypeShape EntityType="MvcJQueryModel.Sample" Width="1.5" PointX="0.75" PointY="0.75" Height="1.787985026041667" IsExpanded="true" /> </Diagram> </Diagrams> </Designer> </edmx:Edmx>Dosyayı İndir