EntityModel.edmx 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
  3. <!-- EF Runtime content -->
  4. <edmx:Runtime>
  5. <!-- SSDL content -->
  6. <edmx:StorageModels>
  7. <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">
  8. <EntityType Name="Territoires">
  9. <Key>
  10. <PropertyRef Name="Id" />
  11. </Key>
  12. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  13. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  14. <Property Name="Referent_SID" Type="nvarchar" MaxLength="64" />
  15. <Property Name="Referent_Nom" Type="nvarchar" MaxLength="255" />
  16. <Property Name="Referent_Prenom" Type="nvarchar" MaxLength="255" />
  17. <Property Name="Referent_Structure" Type="nvarchar" MaxLength="255" />
  18. <Property Name="Referent_Login" Type="nvarchar" MaxLength="255" />
  19. <Property Name="Ordre" Type="int" Nullable="false" />
  20. </EntityType>
  21. <EntityType Name="TypesCollege">
  22. <Key>
  23. <PropertyRef Name="Id" />
  24. </Key>
  25. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  26. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  27. <Property Name="Ordre" Type="int" Nullable="false" />
  28. </EntityType>
  29. <EntityContainer Name="ModeleMVCStoreContainer">
  30. <EntitySet Name="Territoires" EntityType="Self.Territoires" Schema="dbo" store:Type="Tables" />
  31. <EntitySet Name="TypesCollege" EntityType="Self.TypesCollege" Schema="dbo" store:Type="Tables" />
  32. </EntityContainer>
  33. </Schema></edmx:StorageModels>
  34. <!-- CSDL content -->
  35. <edmx:ConceptualModels>
  36. <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">
  37. <EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
  38. <EntitySet Name="Territoires" EntityType="CD67.FicheCollege.Territoire" />
  39. <EntitySet Name="TypesCollege" EntityType="CD67.FicheCollege.TypeCollege" />
  40. </EntityContainer>
  41. <EntityType Name="Territoire">
  42. <Key>
  43. <PropertyRef Name="Id" />
  44. </Key>
  45. <Property Name="Id" Type="Int32" Nullable="false" />
  46. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  47. <Property Name="Referent_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  48. <Property Name="Referent_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  49. <Property Name="Referent_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  50. <Property Name="Referent_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  51. <Property Name="Referent_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  52. <Property Name="Ordre" Type="Int32" Nullable="false" />
  53. </EntityType>
  54. <EntityType Name="TypeCollege">
  55. <Key>
  56. <PropertyRef Name="Id" />
  57. </Key>
  58. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  59. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  60. <Property Name="Ordre" Type="Int32" Nullable="false" />
  61. </EntityType>
  62. </Schema>
  63. </edmx:ConceptualModels>
  64. <!-- C-S mapping content -->
  65. <edmx:Mappings>
  66. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  67. <EntityContainerMapping StorageEntityContainer="ModeleMVCStoreContainer" CdmEntityContainer="Entities">
  68. <EntitySetMapping Name="Territoires">
  69. <EntityTypeMapping TypeName="CD67.FicheCollege.Territoire">
  70. <MappingFragment StoreEntitySet="Territoires">
  71. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  72. <ScalarProperty Name="Referent_Login" ColumnName="Referent_Login" />
  73. <ScalarProperty Name="Referent_Structure" ColumnName="Referent_Structure" />
  74. <ScalarProperty Name="Referent_Prenom" ColumnName="Referent_Prenom" />
  75. <ScalarProperty Name="Referent_Nom" ColumnName="Referent_Nom" />
  76. <ScalarProperty Name="Referent_SID" ColumnName="Referent_SID" />
  77. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  78. <ScalarProperty Name="Id" ColumnName="Id" />
  79. </MappingFragment>
  80. </EntityTypeMapping>
  81. </EntitySetMapping>
  82. <EntitySetMapping Name="TypesCollege">
  83. <EntityTypeMapping TypeName="CD67.FicheCollege.TypeCollege">
  84. <MappingFragment StoreEntitySet="TypesCollege">
  85. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  86. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  87. <ScalarProperty Name="Id" ColumnName="Id" />
  88. </MappingFragment>
  89. </EntityTypeMapping>
  90. </EntitySetMapping>
  91. </EntityContainerMapping>
  92. </Mapping></edmx:Mappings>
  93. </edmx:Runtime>
  94. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  95. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  96. <Connection>
  97. <DesignerInfoPropertySet>
  98. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  99. </DesignerInfoPropertySet>
  100. </Connection>
  101. <Options>
  102. <DesignerInfoPropertySet>
  103. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  104. <DesignerProperty Name="EnablePluralization" Value="True" />
  105. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  106. <DesignerProperty Name="UseLegacyProvider" Value="False" />
  107. <DesignerProperty Name="CodeGenerationStrategy" Value="Aucun" />
  108. </DesignerInfoPropertySet>
  109. </Options>
  110. <!-- Diagram content (shape and connector positions) -->
  111. <Diagrams></Diagrams>
  112. </Designer>
  113. </edmx:Edmx>