|
|
@@ -4,22 +4,91 @@
|
|
|
<edmx:Runtime>
|
|
|
<!-- SSDL content -->
|
|
|
<edmx:StorageModels>
|
|
|
- <Schema Namespace="ModeleMVC.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2012" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
|
|
|
- <EntityContainer Name="ModeleMVCStoreContainer">
|
|
|
- </EntityContainer>
|
|
|
-</Schema></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">
|
|
|
+ <EntityType Name="Territoires">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
+ <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
|
|
|
+ <Property Name="Referent_SID" Type="nvarchar" MaxLength="64" />
|
|
|
+ <Property Name="Referent_Nom" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Referent_Prenom" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Referent_Structure" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Referent_Login" Type="nvarchar" MaxLength="255" />
|
|
|
+ <Property Name="Ordre" Type="int" Nullable="false" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="TypesCollege">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
+ <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
|
|
|
+ <Property Name="Ordre" Type="int" Nullable="false" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityContainer Name="ModeleMVCStoreContainer">
|
|
|
+ <EntitySet Name="Territoires" EntityType="Self.Territoires" Schema="dbo" store:Type="Tables" />
|
|
|
+ <EntitySet Name="TypesCollege" EntityType="Self.TypesCollege" Schema="dbo" store:Type="Tables" />
|
|
|
+ </EntityContainer>
|
|
|
+ </Schema></edmx:StorageModels>
|
|
|
<!-- CSDL content -->
|
|
|
<edmx:ConceptualModels>
|
|
|
- <Schema Namespace="ModeleMVC" 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="ModeleMVCEntities" annotation:LazyLoadingEnabled="true">
|
|
|
+ <Schema Namespace="CD67.FicheCollege" 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="Entities" annotation:LazyLoadingEnabled="true">
|
|
|
+ <EntitySet Name="Territoires" EntityType="CD67.FicheCollege.Territoire" />
|
|
|
+ <EntitySet Name="TypesCollege" EntityType="CD67.FicheCollege.TypeCollege" />
|
|
|
</EntityContainer>
|
|
|
+ <EntityType Name="Territoire">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="Int32" Nullable="false" />
|
|
|
+ <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Referent_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Referent_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Referent_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Referent_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Referent_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Ordre" Type="Int32" Nullable="false" />
|
|
|
+ </EntityType>
|
|
|
+ <EntityType Name="TypeCollege">
|
|
|
+ <Key>
|
|
|
+ <PropertyRef Name="Id" />
|
|
|
+ </Key>
|
|
|
+ <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
+ <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
+ <Property Name="Ordre" Type="Int32" Nullable="false" />
|
|
|
+ </EntityType>
|
|
|
</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="ModeleMVCStoreContainer" CdmEntityContainer="ModeleMVCEntities">
|
|
|
- </EntityContainerMapping>
|
|
|
+ <EntityContainerMapping StorageEntityContainer="ModeleMVCStoreContainer" CdmEntityContainer="Entities">
|
|
|
+ <EntitySetMapping Name="Territoires">
|
|
|
+ <EntityTypeMapping TypeName="CD67.FicheCollege.Territoire">
|
|
|
+ <MappingFragment StoreEntitySet="Territoires">
|
|
|
+ <ScalarProperty Name="Ordre" ColumnName="Ordre" />
|
|
|
+ <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" />
|
|
|
+ <ScalarProperty Name="Id" ColumnName="Id" />
|
|
|
+ </MappingFragment>
|
|
|
+ </EntityTypeMapping>
|
|
|
+ </EntitySetMapping>
|
|
|
+ <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>
|
|
|
+ </EntityContainerMapping>
|
|
|
</Mapping></edmx:Mappings>
|
|
|
</edmx:Runtime>
|
|
|
<!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
|
|
|
@@ -32,7 +101,7 @@
|
|
|
<Options>
|
|
|
<DesignerInfoPropertySet>
|
|
|
<DesignerProperty Name="ValidateOnBuild" Value="true" />
|
|
|
- <DesignerProperty Name="EnablePluralization" Value="false" />
|
|
|
+ <DesignerProperty Name="EnablePluralization" Value="True" />
|
|
|
<DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
|
|
|
<DesignerProperty Name="UseLegacyProvider" Value="False" />
|
|
|
<DesignerProperty Name="CodeGenerationStrategy" Value="Aucun" />
|