|
@@ -4,88 +4,288 @@
|
|
|
<edmx:Runtime>
|
|
|
<!-- SSDL content -->
|
|
|
<edmx:StorageModels>
|
|
|
- <Schema Namespace="Хранилище PartsWarehouseDataBaseModel" 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">
|
|
|
+ <Schema Namespace="Хранилище PartsWarehouseDataBaseModel" 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="Car">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="IdCar" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="IdCar" Type="int" Nullable="false" />
|
|
|
+ <Property Name="Company" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
+ <Property Name="Name" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
+ <Property Name="Generation" Type="int" Nullable="false" />
|
|
|
+ </EntityType>
|
|
|
<EntityType Name="Parts">
|
|
|
<Key>
|
|
|
- <PropertyRef Name="Id" />
|
|
|
+ <PropertyRef Name="IdPart" />
|
|
|
</Key>
|
|
|
- <Property Name="Id" Type="int" Nullable="false" />
|
|
|
- <Property Name="Type" Type="nvarchar" MaxLength="50" />
|
|
|
- <Property Name="Name" Type="nvarchar" MaxLength="50" />
|
|
|
- <Property Name="Vin" Type="int" />
|
|
|
+ <Property Name="IdPart" Type="int" Nullable="false" />
|
|
|
+ <Property Name="IdCar" Type="int" Nullable="false" />
|
|
|
+ <Property Name="Type" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
+ <Property Name="Name" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
+ <Property Name="Model" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
+ <Property Name="Manufacturer" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
+ <Property Name="Description" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
+ <Property Name="Image" Type="varbinary(max)" Nullable="false" />
|
|
|
+ <Property Name="Remain" Type="int" Nullable="false" />
|
|
|
+ <Property Name="Price" Type="float" Nullable="false" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="sysdiagrams">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="diagram_id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="name" Type="nvarchar" MaxLength="128" Nullable="false" />
|
|
|
+ <Property Name="principal_id" Type="int" Nullable="false" />
|
|
|
+ <Property Name="diagram_id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
+ <Property Name="version" Type="int" />
|
|
|
+ <Property Name="definition" Type="varbinary(max)" />
|
|
|
</EntityType>
|
|
|
<EntityType Name="User">
|
|
|
<Key>
|
|
|
+ <PropertyRef Name="IdUser" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="IdUser" Type="int" Nullable="false" />
|
|
|
+ <Property Name="Login" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
+ <Property Name="Password" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="UserCar">
|
|
|
+ <Key>
|
|
|
<PropertyRef Name="Id" />
|
|
|
</Key>
|
|
|
<Property Name="Id" Type="int" Nullable="false" />
|
|
|
- <Property Name="Login" Type="nvarchar" MaxLength="30" Nullable="false" />
|
|
|
- <Property Name="Password" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
- <Property Name="Email" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
- <Property Name="Birthday" Type="datetime" />
|
|
|
- <Property Name="PhoneNumber" Type="nvarchar" MaxLength="10" />
|
|
|
- <Property Name="ProfileImgSource" Type="varbinary(max)" />
|
|
|
+ <Property Name="IdUser" Type="int" Nullable="false" />
|
|
|
+ <Property Name="IdCar" Type="int" Nullable="false" />
|
|
|
+ <Property Name="Vin" Type="int" Nullable="false" />
|
|
|
</EntityType>
|
|
|
+ <Association Name="FK_Parts_Car">
|
|
|
+ <End Role="Car" Type="Self.Car" Multiplicity="1" />
|
|
|
+ <End Role="Parts" Type="Self.Parts" Multiplicity="*" />
|
|
|
+ <ReferentialConstraint>
|
|
|
+ <Principal Role="Car">
|
|
|
+ <PropertyRef Name="IdCar" />
|
|
|
+ </Principal>
|
|
|
+ <Dependent Role="Parts">
|
|
|
+ <PropertyRef Name="IdCar" />
|
|
|
+ </Dependent>
|
|
|
+ </ReferentialConstraint>
|
|
|
+ </Association>
|
|
|
+ <Association Name="FK_UserCar_Car">
|
|
|
+ <End Role="Car" Type="Self.Car" Multiplicity="1" />
|
|
|
+ <End Role="UserCar" Type="Self.UserCar" Multiplicity="*" />
|
|
|
+ <ReferentialConstraint>
|
|
|
+ <Principal Role="Car">
|
|
|
+ <PropertyRef Name="IdCar" />
|
|
|
+ </Principal>
|
|
|
+ <Dependent Role="UserCar">
|
|
|
+ <PropertyRef Name="IdCar" />
|
|
|
+ </Dependent>
|
|
|
+ </ReferentialConstraint>
|
|
|
+ </Association>
|
|
|
+ <Association Name="FK_UserCar_User">
|
|
|
+ <End Role="User" Type="Self.User" Multiplicity="1" />
|
|
|
+ <End Role="UserCar" Type="Self.UserCar" Multiplicity="*" />
|
|
|
+ <ReferentialConstraint>
|
|
|
+ <Principal Role="User">
|
|
|
+ <PropertyRef Name="IdUser" />
|
|
|
+ </Principal>
|
|
|
+ <Dependent Role="UserCar">
|
|
|
+ <PropertyRef Name="IdUser" />
|
|
|
+ </Dependent>
|
|
|
+ </ReferentialConstraint>
|
|
|
+ </Association>
|
|
|
<EntityContainer Name="Хранилище PartsWarehouseDataBaseModelContainer">
|
|
|
+ <EntitySet Name="Car" EntityType="Self.Car" Schema="dbo" store:Type="Tables" />
|
|
|
<EntitySet Name="Parts" EntityType="Self.Parts" Schema="dbo" store:Type="Tables" />
|
|
|
+ <EntitySet Name="sysdiagrams" EntityType="Self.sysdiagrams" Schema="dbo" store:Type="Tables" />
|
|
|
<EntitySet Name="User" EntityType="Self.User" Schema="dbo" store:Type="Tables" />
|
|
|
+ <EntitySet Name="UserCar" EntityType="Self.UserCar" Schema="dbo" store:Type="Tables" />
|
|
|
+ <AssociationSet Name="FK_Parts_Car" Association="Self.FK_Parts_Car">
|
|
|
+ <End Role="Car" EntitySet="Car" />
|
|
|
+ <End Role="Parts" EntitySet="Parts" />
|
|
|
+ </AssociationSet>
|
|
|
+ <AssociationSet Name="FK_UserCar_Car" Association="Self.FK_UserCar_Car">
|
|
|
+ <End Role="Car" EntitySet="Car" />
|
|
|
+ <End Role="UserCar" EntitySet="UserCar" />
|
|
|
+ </AssociationSet>
|
|
|
+ <AssociationSet Name="FK_UserCar_User" Association="Self.FK_UserCar_User">
|
|
|
+ <End Role="User" EntitySet="User" />
|
|
|
+ <End Role="UserCar" EntitySet="UserCar" />
|
|
|
+ </AssociationSet>
|
|
|
</EntityContainer>
|
|
|
- </Schema>
|
|
|
- </edmx:StorageModels>
|
|
|
+ </Schema></edmx:StorageModels>
|
|
|
<!-- CSDL content -->
|
|
|
<edmx:ConceptualModels>
|
|
|
<Schema Namespace="PartsWarehouseDataBaseModel" 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">
|
|
|
+ <EntityContainer Name="PartsWarehouseDataBaseEntities" annotation:LazyLoadingEnabled="true">
|
|
|
+ <EntitySet Name="Car" EntityType="PartsWarehouseDataBaseModel.Car" />
|
|
|
+ <EntitySet Name="Parts" EntityType="PartsWarehouseDataBaseModel.Parts" />
|
|
|
+ <EntitySet Name="sysdiagrams" EntityType="PartsWarehouseDataBaseModel.sysdiagrams" />
|
|
|
+ <EntitySet Name="User" EntityType="PartsWarehouseDataBaseModel.User" />
|
|
|
+ <EntitySet Name="UserCar" EntityType="PartsWarehouseDataBaseModel.UserCar" />
|
|
|
+ <AssociationSet Name="FK_Parts_Car" Association="PartsWarehouseDataBaseModel.FK_Parts_Car">
|
|
|
+ <End Role="Car" EntitySet="Car" />
|
|
|
+ <End Role="Parts" EntitySet="Parts" />
|
|
|
+ </AssociationSet>
|
|
|
+ <AssociationSet Name="FK_UserCar_Car" Association="PartsWarehouseDataBaseModel.FK_UserCar_Car">
|
|
|
+ <End Role="Car" EntitySet="Car" />
|
|
|
+ <End Role="UserCar" EntitySet="UserCar" />
|
|
|
+ </AssociationSet>
|
|
|
+ <AssociationSet Name="FK_UserCar_User" Association="PartsWarehouseDataBaseModel.FK_UserCar_User">
|
|
|
+ <End Role="User" EntitySet="User" />
|
|
|
+ <End Role="UserCar" EntitySet="UserCar" />
|
|
|
+ </AssociationSet>
|
|
|
+ </EntityContainer>
|
|
|
+ <EntityType Name="Car">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="IdCar" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="IdCar" Type="Int32" Nullable="false" />
|
|
|
+ <Property Name="Company" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Name" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Generation" Type="Int32" Nullable="false" />
|
|
|
+ <NavigationProperty Name="Parts" Relationship="PartsWarehouseDataBaseModel.FK_Parts_Car" FromRole="Car" ToRole="Parts" />
|
|
|
+ <NavigationProperty Name="UserCar" Relationship="PartsWarehouseDataBaseModel.FK_UserCar_Car" FromRole="Car" ToRole="UserCar" />
|
|
|
+ </EntityType>
|
|
|
<EntityType Name="Parts">
|
|
|
<Key>
|
|
|
- <PropertyRef Name="Id" />
|
|
|
+ <PropertyRef Name="IdPart" />
|
|
|
</Key>
|
|
|
- <Property Name="Id" Type="Int32" Nullable="false" />
|
|
|
- <Property Name="Type" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
- <Property Name="Name" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
- <Property Name="Vin" Type="Int32" />
|
|
|
+ <Property Name="IdPart" Type="Int32" Nullable="false" />
|
|
|
+ <Property Name="IdCar" Type="Int32" Nullable="false" />
|
|
|
+ <Property Name="Type" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Name" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Model" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Manufacturer" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Description" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Image" Type="Binary" Nullable="false" MaxLength="Max" FixedLength="false" />
|
|
|
+ <Property Name="Remain" Type="Int32" Nullable="false" />
|
|
|
+ <Property Name="Price" Type="Double" Nullable="false" />
|
|
|
+ <NavigationProperty Name="Car" Relationship="PartsWarehouseDataBaseModel.FK_Parts_Car" FromRole="Parts" ToRole="Car" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="sysdiagrams">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="diagram_id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="name" Type="String" Nullable="false" MaxLength="128" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="principal_id" Type="Int32" Nullable="false" />
|
|
|
+ <Property Name="diagram_id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
+ <Property Name="version" Type="Int32" />
|
|
|
+ <Property Name="definition" Type="Binary" MaxLength="Max" FixedLength="false" />
|
|
|
</EntityType>
|
|
|
<EntityType Name="User">
|
|
|
<Key>
|
|
|
+ <PropertyRef Name="IdUser" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="IdUser" Type="Int32" Nullable="false" />
|
|
|
+ <Property Name="Login" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Password" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
+ <NavigationProperty Name="UserCar" Relationship="PartsWarehouseDataBaseModel.FK_UserCar_User" FromRole="User" ToRole="UserCar" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="UserCar">
|
|
|
+ <Key>
|
|
|
<PropertyRef Name="Id" />
|
|
|
</Key>
|
|
|
<Property Name="Id" Type="Int32" Nullable="false" />
|
|
|
- <Property Name="Login" Type="String" MaxLength="30" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
- <Property Name="Password" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
- <Property Name="Email" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
- <Property Name="Birthday" Type="DateTime" Precision="3" />
|
|
|
- <Property Name="PhoneNumber" Type="String" MaxLength="10" FixedLength="false" Unicode="true" />
|
|
|
- <Property Name="ProfileImgSource" Type="Binary" MaxLength="Max" FixedLength="false" />
|
|
|
+ <Property Name="IdUser" Type="Int32" Nullable="false" />
|
|
|
+ <Property Name="IdCar" Type="Int32" Nullable="false" />
|
|
|
+ <Property Name="Vin" Type="Int32" Nullable="false" />
|
|
|
+ <NavigationProperty Name="Car" Relationship="PartsWarehouseDataBaseModel.FK_UserCar_Car" FromRole="UserCar" ToRole="Car" />
|
|
|
+ <NavigationProperty Name="User" Relationship="PartsWarehouseDataBaseModel.FK_UserCar_User" FromRole="UserCar" ToRole="User" />
|
|
|
</EntityType>
|
|
|
- <EntityContainer Name="PartsWarehouseDataBaseEntities" annotation:LazyLoadingEnabled="true">
|
|
|
- <EntitySet Name="Parts" EntityType="Self.Parts" />
|
|
|
- <EntitySet Name="User" EntityType="Self.User" />
|
|
|
- </EntityContainer>
|
|
|
- </Schema>
|
|
|
+ <Association Name="FK_Parts_Car">
|
|
|
+ <End Type="PartsWarehouseDataBaseModel.Car" Role="Car" Multiplicity="1" />
|
|
|
+ <End Type="PartsWarehouseDataBaseModel.Parts" Role="Parts" Multiplicity="*" />
|
|
|
+ <ReferentialConstraint>
|
|
|
+ <Principal Role="Car">
|
|
|
+ <PropertyRef Name="IdCar" />
|
|
|
+ </Principal>
|
|
|
+ <Dependent Role="Parts">
|
|
|
+ <PropertyRef Name="IdCar" />
|
|
|
+ </Dependent>
|
|
|
+ </ReferentialConstraint>
|
|
|
+ </Association>
|
|
|
+ <Association Name="FK_UserCar_Car">
|
|
|
+ <End Type="PartsWarehouseDataBaseModel.Car" Role="Car" Multiplicity="1" />
|
|
|
+ <End Type="PartsWarehouseDataBaseModel.UserCar" Role="UserCar" Multiplicity="*" />
|
|
|
+ <ReferentialConstraint>
|
|
|
+ <Principal Role="Car">
|
|
|
+ <PropertyRef Name="IdCar" />
|
|
|
+ </Principal>
|
|
|
+ <Dependent Role="UserCar">
|
|
|
+ <PropertyRef Name="IdCar" />
|
|
|
+ </Dependent>
|
|
|
+ </ReferentialConstraint>
|
|
|
+ </Association>
|
|
|
+ <Association Name="FK_UserCar_User">
|
|
|
+ <End Type="PartsWarehouseDataBaseModel.User" Role="User" Multiplicity="1" />
|
|
|
+ <End Type="PartsWarehouseDataBaseModel.UserCar" Role="UserCar" Multiplicity="*" />
|
|
|
+ <ReferentialConstraint>
|
|
|
+ <Principal Role="User">
|
|
|
+ <PropertyRef Name="IdUser" />
|
|
|
+ </Principal>
|
|
|
+ <Dependent Role="UserCar">
|
|
|
+ <PropertyRef Name="IdUser" />
|
|
|
+ </Dependent>
|
|
|
+ </ReferentialConstraint>
|
|
|
+ </Association>
|
|
|
+ </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="Хранилище PartsWarehouseDataBaseModelContainer" CdmEntityContainer="PartsWarehouseDataBaseEntities">
|
|
|
+ <EntitySetMapping Name="Car">
|
|
|
+ <EntityTypeMapping TypeName="PartsWarehouseDataBaseModel.Car">
|
|
|
+ <MappingFragment StoreEntitySet="Car">
|
|
|
+ <ScalarProperty Name="Generation" ColumnName="Generation" />
|
|
|
+ <ScalarProperty Name="Name" ColumnName="Name" />
|
|
|
+ <ScalarProperty Name="Company" ColumnName="Company" />
|
|
|
+ <ScalarProperty Name="IdCar" ColumnName="IdCar" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
<EntitySetMapping Name="Parts">
|
|
|
<EntityTypeMapping TypeName="PartsWarehouseDataBaseModel.Parts">
|
|
|
<MappingFragment StoreEntitySet="Parts">
|
|
|
- <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
- <ScalarProperty Name="Type" ColumnName="Type" />
|
|
|
+ <ScalarProperty Name="Price" ColumnName="Price" />
|
|
|
+ <ScalarProperty Name="Remain" ColumnName="Remain" />
|
|
|
+ <ScalarProperty Name="Image" ColumnName="Image" />
|
|
|
+ <ScalarProperty Name="Description" ColumnName="Description" />
|
|
|
+ <ScalarProperty Name="Manufacturer" ColumnName="Manufacturer" />
|
|
|
+ <ScalarProperty Name="Model" ColumnName="Model" />
|
|
|
<ScalarProperty Name="Name" ColumnName="Name" />
|
|
|
- <ScalarProperty Name="Vin" ColumnName="Vin" />
|
|
|
+ <ScalarProperty Name="Type" ColumnName="Type" />
|
|
|
+ <ScalarProperty Name="IdCar" ColumnName="IdCar" />
|
|
|
+ <ScalarProperty Name="IdPart" ColumnName="IdPart" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="sysdiagrams">
|
|
|
+ <EntityTypeMapping TypeName="PartsWarehouseDataBaseModel.sysdiagrams">
|
|
|
+ <MappingFragment StoreEntitySet="sysdiagrams">
|
|
|
+ <ScalarProperty Name="definition" ColumnName="definition" />
|
|
|
+ <ScalarProperty Name="version" ColumnName="version" />
|
|
|
+ <ScalarProperty Name="diagram_id" ColumnName="diagram_id" />
|
|
|
+ <ScalarProperty Name="principal_id" ColumnName="principal_id" />
|
|
|
+ <ScalarProperty Name="name" ColumnName="name" />
|
|
|
</MappingFragment>
|
|
|
</EntityTypeMapping>
|
|
|
</EntitySetMapping>
|
|
|
<EntitySetMapping Name="User">
|
|
|
<EntityTypeMapping TypeName="PartsWarehouseDataBaseModel.User">
|
|
|
<MappingFragment StoreEntitySet="User">
|
|
|
- <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
- <ScalarProperty Name="Login" ColumnName="Login" />
|
|
|
<ScalarProperty Name="Password" ColumnName="Password" />
|
|
|
- <ScalarProperty Name="Email" ColumnName="Email" />
|
|
|
- <ScalarProperty Name="Birthday" ColumnName="Birthday" />
|
|
|
- <ScalarProperty Name="PhoneNumber" ColumnName="PhoneNumber" />
|
|
|
- <ScalarProperty Name="ProfileImgSource" ColumnName="ProfileImgSource" />
|
|
|
+ <ScalarProperty Name="Login" ColumnName="Login" />
|
|
|
+ <ScalarProperty Name="IdUser" ColumnName="IdUser" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="UserCar">
|
|
|
+ <EntityTypeMapping TypeName="PartsWarehouseDataBaseModel.UserCar">
|
|
|
+ <MappingFragment StoreEntitySet="UserCar">
|
|
|
+ <ScalarProperty Name="Vin" ColumnName="Vin" />
|
|
|
+ <ScalarProperty Name="IdCar" ColumnName="IdCar" />
|
|
|
+ <ScalarProperty Name="IdUser" ColumnName="IdUser" />
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
</MappingFragment>
|
|
|
</EntityTypeMapping>
|
|
|
</EntitySetMapping>
|