|
|
@@ -4,7 +4,7 @@
|
|
|
<edmx:Runtime>
|
|
|
<!-- SSDL content -->
|
|
|
<edmx:StorageModels>
|
|
|
- <Schema Namespace="ModeleMVC.Store" 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="CD67.FicheCollege.Store" 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="Actions-CLAS">
|
|
|
<Key>
|
|
|
<PropertyRef Name="College_Id" />
|
|
|
@@ -13,6 +13,13 @@
|
|
|
<Property Name="Action" Type="bit" />
|
|
|
<Property Name="Commentaire" Type="ntext" />
|
|
|
</EntityType>
|
|
|
+ <EntityType Name="Annees">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
+ <Property Name="Libelle" Type="nvarchar" MaxLength="12" Nullable="false" />
|
|
|
+ </EntityType>
|
|
|
<EntityType Name="Colleges">
|
|
|
<Key>
|
|
|
<PropertyRef Name="Id" />
|
|
|
@@ -31,6 +38,7 @@
|
|
|
<Property Name="Tel" Type="nvarchar" MaxLength="255" />
|
|
|
<Property Name="Fax" Type="nvarchar" MaxLength="255" />
|
|
|
<Property Name="Email" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Annee_Id" Type="int" Nullable="false" />
|
|
|
</EntityType>
|
|
|
<EntityType Name="Identites">
|
|
|
<Key>
|
|
|
@@ -100,6 +108,18 @@
|
|
|
</Dependent>
|
|
|
</ReferentialConstraint>
|
|
|
</Association>
|
|
|
+ <Association Name="FK_Annees_Colleges">
|
|
|
+ <End Role="Annees" Type="Self.Annees" Multiplicity="1" />
|
|
|
+ <End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
|
|
|
+ <ReferentialConstraint>
|
|
|
+ <Principal Role="Annees">
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Principal>
|
|
|
+ <Dependent Role="Colleges">
|
|
|
+ <PropertyRef Name="Annee_Id" />
|
|
|
+ </Dependent>
|
|
|
+ </ReferentialConstraint>
|
|
|
+ </Association>
|
|
|
<Association Name="FK_Colleges_Territoires">
|
|
|
<End Role="Territoires" Type="Self.Territoires" Multiplicity="0..1" />
|
|
|
<End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
|
|
|
@@ -136,8 +156,9 @@
|
|
|
</Dependent>
|
|
|
</ReferentialConstraint>
|
|
|
</Association>
|
|
|
- <EntityContainer Name="ModeleMVCStoreContainer">
|
|
|
+ <EntityContainer Name="CD67FicheCollegeStoreContainer">
|
|
|
<EntitySet Name="Actions-CLAS" EntityType="Self.Actions-CLAS" Schema="dbo" store:Type="Tables" />
|
|
|
+ <EntitySet Name="Annees" EntityType="Self.Annees" Schema="dbo" store:Type="Tables" />
|
|
|
<EntitySet Name="Colleges" EntityType="Self.Colleges" Schema="dbo" store:Type="Tables" />
|
|
|
<EntitySet Name="Identites" EntityType="Self.Identites" Schema="dbo" store:Type="Tables" />
|
|
|
<EntitySet Name="Territoires" EntityType="Self.Territoires" Schema="dbo" store:Type="Tables" />
|
|
|
@@ -146,6 +167,10 @@
|
|
|
<End Role="Colleges" EntitySet="Colleges" />
|
|
|
<End Role="Actions-CLAS" EntitySet="Actions-CLAS" />
|
|
|
</AssociationSet>
|
|
|
+ <AssociationSet Name="FK_Annees_Colleges" Association="Self.FK_Annees_Colleges">
|
|
|
+ <End Role="Annees" EntitySet="Annees" />
|
|
|
+ <End Role="Colleges" EntitySet="Colleges" />
|
|
|
+ </AssociationSet>
|
|
|
<AssociationSet Name="FK_Colleges_Territoires" Association="Self.FK_Colleges_Territoires">
|
|
|
<End Role="Territoires" EntitySet="Territoires" />
|
|
|
<End Role="Colleges" EntitySet="Colleges" />
|
|
|
@@ -180,10 +205,15 @@
|
|
|
<End Role="College" EntitySet="Colleges" />
|
|
|
<End Role="Identite" EntitySet="Identites" />
|
|
|
</AssociationSet>
|
|
|
- <EntitySet Name="ActionsCLAS" EntityType="CD67.FicheCollege.ActionCLAS" />
|
|
|
+ <EntitySet Name="Annees" EntityType="CD67.FicheCollege.Annee" />
|
|
|
+ <AssociationSet Name="AnneeCollege" Association="CD67.FicheCollege.AnneeCollege">
|
|
|
+ <End Role="Annee" EntitySet="Annees" />
|
|
|
+ <End Role="College" EntitySet="Colleges" />
|
|
|
+ </AssociationSet>
|
|
|
+ <EntitySet Name="ActionCLAS" EntityType="CD67.FicheCollege.ActionCLAS" />
|
|
|
<AssociationSet Name="FK_Actions_CLAS_College" Association="CD67.FicheCollege.FK_Actions_CLAS_College">
|
|
|
<End Role="College" EntitySet="Colleges" />
|
|
|
- <End Role="Actions_CLAS" EntitySet="ActionsCLAS" />
|
|
|
+ <End Role="Actions_CLAS" EntitySet="ActionCLAS" />
|
|
|
</AssociationSet>
|
|
|
</EntityContainer>
|
|
|
<EntityType Name="TypeCollege">
|
|
|
@@ -231,6 +261,8 @@
|
|
|
<NavigationProperty Name="Territoire" Relationship="CD67.FicheCollege.FK_Colleges_Territoires" FromRole="College" ToRole="Territoire" />
|
|
|
<NavigationProperty Name="TypeCollege" Relationship="CD67.FicheCollege.FK_Colleges_TypesCollege" FromRole="College" ToRole="TypeCollege" />
|
|
|
<NavigationProperty Name="Identite" Relationship="CD67.FicheCollege.FK_FicheIdentite_College" FromRole="College" ToRole="Identite" />
|
|
|
+ <NavigationProperty Name="Annee" Relationship="CD67.FicheCollege.AnneeCollege" FromRole="College" ToRole="Annee" />
|
|
|
+ <Property Name="Annee_Id" Type="Int32" Nullable="false" />
|
|
|
<NavigationProperty Name="Actions_CLAS" Relationship="CD67.FicheCollege.FK_Actions_CLAS_College" FromRole="College" ToRole="Actions_CLAS" />
|
|
|
</EntityType>
|
|
|
<Association Name="FK_Colleges_Territoires">
|
|
|
@@ -304,6 +336,26 @@
|
|
|
</Dependent>
|
|
|
</ReferentialConstraint>
|
|
|
</Association>
|
|
|
+ <EntityType Name="Annee">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
+ <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.AnneeCollege" FromRole="Annee" ToRole="College" />
|
|
|
+ <Property Name="Libelle" Type="String" Nullable="false" MaxLength="12" FixedLength="false" Unicode="true" />
|
|
|
+ </EntityType>
|
|
|
+ <Association Name="AnneeCollege">
|
|
|
+ <End Type="CD67.FicheCollege.Annee" Role="Annee" Multiplicity="1" />
|
|
|
+ <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
|
|
|
+ <ReferentialConstraint>
|
|
|
+ <Principal Role="Annee">
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Principal>
|
|
|
+ <Dependent Role="College">
|
|
|
+ <PropertyRef Name="Annee_Id" />
|
|
|
+ </Dependent>
|
|
|
+ </ReferentialConstraint>
|
|
|
+ </Association>
|
|
|
<EntityType Name="ActionCLAS">
|
|
|
<Key>
|
|
|
<PropertyRef Name="College_Id" />
|
|
|
@@ -330,87 +382,96 @@
|
|
|
<!-- C-S mapping content -->
|
|
|
<edmx:Mappings>
|
|
|
<Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
|
|
|
- <EntityContainerMapping StorageEntityContainer="ModeleMVCStoreContainer" CdmEntityContainer="Entities">
|
|
|
- <EntitySetMapping Name="TypesCollege">
|
|
|
- <EntityTypeMapping TypeName="CD67.FicheCollege.TypeCollege">
|
|
|
- <MappingFragment StoreEntitySet="TypesCollege">
|
|
|
- <ScalarProperty Name="Ordre" ColumnName="Ordre" />
|
|
|
- <ScalarProperty Name="Libelle" ColumnName="Libelle" />
|
|
|
- <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
- </MappingFragment>
|
|
|
- </EntityTypeMapping>
|
|
|
- </EntitySetMapping>
|
|
|
- <EntitySetMapping Name="Territoires">
|
|
|
- <EntityTypeMapping TypeName="CD67.FicheCollege.Territoire">
|
|
|
- <MappingFragment StoreEntitySet="Territoires">
|
|
|
- <ScalarProperty Name="Ordre" ColumnName="Ordre" />
|
|
|
- <ScalarProperty Name="Referent_Email" ColumnName="Referent_Email" />
|
|
|
- <ScalarProperty Name="Referent_Login" ColumnName="Referent_Login" />
|
|
|
- <ScalarProperty Name="Referent_Structure" ColumnName="Referent_Structure" />
|
|
|
- <ScalarProperty Name="Referent_Prenom" ColumnName="Referent_Prenom" />
|
|
|
- <ScalarProperty Name="Referent_Nom" ColumnName="Referent_Nom" />
|
|
|
- <ScalarProperty Name="Referent_SID" ColumnName="Referent_SID" />
|
|
|
- <ScalarProperty Name="Libelle" ColumnName="Libelle" />
|
|
|
+ <EntityContainerMapping StorageEntityContainer="CD67FicheCollegeStoreContainer" CdmEntityContainer="Entities">
|
|
|
+ <EntitySetMapping Name="TypesCollege">
|
|
|
+ <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.TypeCollege)">
|
|
|
+ <MappingFragment StoreEntitySet="TypesCollege">
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
+ <ScalarProperty Name="Libelle" ColumnName="Libelle" />
|
|
|
+ <ScalarProperty Name="Ordre" ColumnName="Ordre" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="Territoires">
|
|
|
+ <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Territoire)">
|
|
|
+ <MappingFragment StoreEntitySet="Territoires">
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
+ <ScalarProperty Name="Libelle" ColumnName="Libelle" />
|
|
|
+ <ScalarProperty Name="Referent_SID" ColumnName="Referent_SID" />
|
|
|
+ <ScalarProperty Name="Referent_Nom" ColumnName="Referent_Nom" />
|
|
|
+ <ScalarProperty Name="Referent_Prenom" ColumnName="Referent_Prenom" />
|
|
|
+ <ScalarProperty Name="Referent_Structure" ColumnName="Referent_Structure" />
|
|
|
+ <ScalarProperty Name="Referent_Login" ColumnName="Referent_Login" />
|
|
|
+ <ScalarProperty Name="Referent_Email" ColumnName="Referent_Email" />
|
|
|
+ <ScalarProperty Name="Ordre" ColumnName="Ordre" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="Colleges">
|
|
|
+ <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.College)">
|
|
|
+ <MappingFragment StoreEntitySet="Colleges">
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
+ <ScalarProperty Name="Libelle" ColumnName="Libelle" />
|
|
|
+ <ScalarProperty Name="Adresse" ColumnName="Adresse" />
|
|
|
+ <ScalarProperty Name="Code_Postal" ColumnName="Code_Postal" />
|
|
|
+ <ScalarProperty Name="TypeCollege_Id" ColumnName="TypeCollege_Id" />
|
|
|
+ <ScalarProperty Name="Commune_Insee" ColumnName="Commune_Insee" />
|
|
|
+ <ScalarProperty Name="Commune" ColumnName="Commune" />
|
|
|
+ <ScalarProperty Name="Canton" ColumnName="Canton" />
|
|
|
+ <ScalarProperty Name="Territoire_Id" ColumnName="Territoire_Id" />
|
|
|
+ <ScalarProperty Name="TAD" ColumnName="TAD" />
|
|
|
+ <ScalarProperty Name="CDC" ColumnName="CDC" />
|
|
|
+ <ScalarProperty Name="Tel" ColumnName="Tel" />
|
|
|
+ <ScalarProperty Name="Fax" ColumnName="Fax" />
|
|
|
+ <ScalarProperty Name="Email" ColumnName="Email" />
|
|
|
+ <ScalarProperty Name="Annee_Id" ColumnName="Annee_Id" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="Identites">
|
|
|
+ <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Identite)">
|
|
|
+ <MappingFragment StoreEntitySet="Identites">
|
|
|
+ <ScalarProperty Name="College_Id" ColumnName="College_Id" />
|
|
|
+ <ScalarProperty Name="Principal_SID" ColumnName="Principal_SID" />
|
|
|
+ <ScalarProperty Name="Principal_Login" ColumnName="Principal_Login" />
|
|
|
+ <ScalarProperty Name="Principal_Nom" ColumnName="Principal_Nom" />
|
|
|
+ <ScalarProperty Name="Principal_Prenom" ColumnName="Principal_Prenom" />
|
|
|
+ <ScalarProperty Name="Principal_Email" ColumnName="Principal_Email" />
|
|
|
+ <ScalarProperty Name="Principal_Tel" ColumnName="Principal_Tel" />
|
|
|
+ <ScalarProperty Name="Principal_Structure" ColumnName="Principal_Structure" />
|
|
|
+ <ScalarProperty Name="Adjoint_SID" ColumnName="Adjoint_SID" />
|
|
|
+ <ScalarProperty Name="Adjoint_Login" ColumnName="Adjoint_Login" />
|
|
|
+ <ScalarProperty Name="Adjoint_Nom" ColumnName="Adjoint_Nom" />
|
|
|
+ <ScalarProperty Name="Adjoint_Prenom" ColumnName="Adjoint_Prenom" />
|
|
|
+ <ScalarProperty Name="Adjoint_Email" ColumnName="Adjoint_Email" />
|
|
|
+ <ScalarProperty Name="Adjoint_Tel" ColumnName="Adjoint_Tel" />
|
|
|
+ <ScalarProperty Name="Adjoint_Structure" ColumnName="Adjoint_Structure" />
|
|
|
+ <ScalarProperty Name="Gestionnaire_SID" ColumnName="Gestionnaire_SID" />
|
|
|
+ <ScalarProperty Name="Gestionnaire_Login" ColumnName="Gestionnaire_Login" />
|
|
|
+ <ScalarProperty Name="Gestionnaire_Nom" ColumnName="Gestionnaire_Nom" />
|
|
|
+ <ScalarProperty Name="Gestionnaire_Prenom" ColumnName="Gestionnaire_Prenom" />
|
|
|
+ <ScalarProperty Name="Gestionnaire_Email" ColumnName="Gestionnaire_Email" />
|
|
|
+ <ScalarProperty Name="Gestionnaire_Tel" ColumnName="Gestionnaire_Tel" />
|
|
|
+ <ScalarProperty Name="Gestionnaire_Structure" ColumnName="Gestionnaire_Structure" />
|
|
|
+ <ScalarProperty Name="Gestionnaire2_SID" ColumnName="Gestionnaire2_SID" />
|
|
|
+ <ScalarProperty Name="Gestionnaire2_Login" ColumnName="Gestionnaire2_Login" />
|
|
|
+ <ScalarProperty Name="Gestionnaire2_Nom" ColumnName="Gestionnaire2_Nom" />
|
|
|
+ <ScalarProperty Name="Gestionnaire2_Prenom" ColumnName="Gestionnaire2_Prenom" />
|
|
|
+ <ScalarProperty Name="Gestionnaire2_Email" ColumnName="Gestionnaire2_Email" />
|
|
|
+ <ScalarProperty Name="Gestionnaire2_Tel" ColumnName="Gestionnaire2_Tel" />
|
|
|
+ <ScalarProperty Name="Gestionnaire2_Structure" ColumnName="Gestionnaire2_Structure" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="Annees">
|
|
|
+ <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Annee)">
|
|
|
+ <MappingFragment StoreEntitySet="Annees">
|
|
|
+ <ScalarProperty Name="Libelle" ColumnName="Libelle" />
|
|
|
<ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
- </MappingFragment>
|
|
|
- </EntityTypeMapping>
|
|
|
- </EntitySetMapping>
|
|
|
- <EntitySetMapping Name="Colleges">
|
|
|
- <EntityTypeMapping TypeName="CD67.FicheCollege.College">
|
|
|
- <MappingFragment StoreEntitySet="Colleges">
|
|
|
- <ScalarProperty Name="Email" ColumnName="Email" />
|
|
|
- <ScalarProperty Name="Fax" ColumnName="Fax" />
|
|
|
- <ScalarProperty Name="Tel" ColumnName="Tel" />
|
|
|
- <ScalarProperty Name="CDC" ColumnName="CDC" />
|
|
|
- <ScalarProperty Name="TAD" ColumnName="TAD" />
|
|
|
- <ScalarProperty Name="Territoire_Id" ColumnName="Territoire_Id" />
|
|
|
- <ScalarProperty Name="Canton" ColumnName="Canton" />
|
|
|
- <ScalarProperty Name="Commune" ColumnName="Commune" />
|
|
|
- <ScalarProperty Name="Commune_Insee" ColumnName="Commune_Insee" />
|
|
|
- <ScalarProperty Name="TypeCollege_Id" ColumnName="TypeCollege_Id" />
|
|
|
- <ScalarProperty Name="Code_Postal" ColumnName="Code_Postal" />
|
|
|
- <ScalarProperty Name="Adresse" ColumnName="Adresse" />
|
|
|
- <ScalarProperty Name="Libelle" ColumnName="Libelle" />
|
|
|
- <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
- </MappingFragment>
|
|
|
- </EntityTypeMapping>
|
|
|
- </EntitySetMapping>
|
|
|
- <EntitySetMapping Name="Identites">
|
|
|
- <EntityTypeMapping TypeName="CD67.FicheCollege.Identite">
|
|
|
- <MappingFragment StoreEntitySet="Identites">
|
|
|
- <ScalarProperty Name="Gestionnaire2_Structure" ColumnName="Gestionnaire2_Structure" />
|
|
|
- <ScalarProperty Name="Gestionnaire2_Tel" ColumnName="Gestionnaire2_Tel" />
|
|
|
- <ScalarProperty Name="Gestionnaire2_Email" ColumnName="Gestionnaire2_Email" />
|
|
|
- <ScalarProperty Name="Gestionnaire2_Prenom" ColumnName="Gestionnaire2_Prenom" />
|
|
|
- <ScalarProperty Name="Gestionnaire2_Nom" ColumnName="Gestionnaire2_Nom" />
|
|
|
- <ScalarProperty Name="Gestionnaire2_Login" ColumnName="Gestionnaire2_Login" />
|
|
|
- <ScalarProperty Name="Gestionnaire2_SID" ColumnName="Gestionnaire2_SID" />
|
|
|
- <ScalarProperty Name="Gestionnaire_Structure" ColumnName="Gestionnaire_Structure" />
|
|
|
- <ScalarProperty Name="Gestionnaire_Tel" ColumnName="Gestionnaire_Tel" />
|
|
|
- <ScalarProperty Name="Gestionnaire_Email" ColumnName="Gestionnaire_Email" />
|
|
|
- <ScalarProperty Name="Gestionnaire_Prenom" ColumnName="Gestionnaire_Prenom" />
|
|
|
- <ScalarProperty Name="Gestionnaire_Nom" ColumnName="Gestionnaire_Nom" />
|
|
|
- <ScalarProperty Name="Gestionnaire_Login" ColumnName="Gestionnaire_Login" />
|
|
|
- <ScalarProperty Name="Gestionnaire_SID" ColumnName="Gestionnaire_SID" />
|
|
|
- <ScalarProperty Name="Adjoint_Structure" ColumnName="Adjoint_Structure" />
|
|
|
- <ScalarProperty Name="Adjoint_Tel" ColumnName="Adjoint_Tel" />
|
|
|
- <ScalarProperty Name="Adjoint_Email" ColumnName="Adjoint_Email" />
|
|
|
- <ScalarProperty Name="Adjoint_Prenom" ColumnName="Adjoint_Prenom" />
|
|
|
- <ScalarProperty Name="Adjoint_Nom" ColumnName="Adjoint_Nom" />
|
|
|
- <ScalarProperty Name="Adjoint_Login" ColumnName="Adjoint_Login" />
|
|
|
- <ScalarProperty Name="Adjoint_SID" ColumnName="Adjoint_SID" />
|
|
|
- <ScalarProperty Name="Principal_Structure" ColumnName="Principal_Structure" />
|
|
|
- <ScalarProperty Name="Principal_Tel" ColumnName="Principal_Tel" />
|
|
|
- <ScalarProperty Name="Principal_Email" ColumnName="Principal_Email" />
|
|
|
- <ScalarProperty Name="Principal_Prenom" ColumnName="Principal_Prenom" />
|
|
|
- <ScalarProperty Name="Principal_Nom" ColumnName="Principal_Nom" />
|
|
|
- <ScalarProperty Name="Principal_Login" ColumnName="Principal_Login" />
|
|
|
- <ScalarProperty Name="Principal_SID" ColumnName="Principal_SID" />
|
|
|
- <ScalarProperty Name="College_Id" ColumnName="College_Id" />
|
|
|
- </MappingFragment>
|
|
|
- </EntityTypeMapping>
|
|
|
- </EntitySetMapping>
|
|
|
- <EntitySetMapping Name="ActionsCLAS">
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <EntitySetMapping Name="ActionCLAS">
|
|
|
<EntityTypeMapping TypeName="CD67.FicheCollege.ActionCLAS">
|
|
|
<MappingFragment StoreEntitySet="Actions-CLAS">
|
|
|
<ScalarProperty Name="Commentaire" ColumnName="Commentaire" />
|
|
|
@@ -419,7 +480,7 @@
|
|
|
</MappingFragment>
|
|
|
</EntityTypeMapping>
|
|
|
</EntitySetMapping>
|
|
|
- </EntityContainerMapping>
|
|
|
+ </EntityContainerMapping>
|
|
|
</Mapping></edmx:Mappings>
|
|
|
</edmx:Runtime>
|
|
|
<!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
|