EntityModel.edmx 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444
  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="Actions-CLAS">
  9. <Key>
  10. <PropertyRef Name="College_Id" />
  11. </Key>
  12. <Property Name="College_Id" Type="nvarchar" MaxLength="8" Nullable="false" />
  13. <Property Name="Action" Type="bit" />
  14. <Property Name="Commentaire" Type="ntext" />
  15. </EntityType>
  16. <EntityType Name="Colleges">
  17. <Key>
  18. <PropertyRef Name="Id" />
  19. </Key>
  20. <Property Name="Id" Type="nvarchar" MaxLength="8" Nullable="false" />
  21. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  22. <Property Name="Adresse" Type="nvarchar" MaxLength="255" />
  23. <Property Name="Code_Postal" Type="nvarchar" MaxLength="5" />
  24. <Property Name="TypeCollege_Id" Type="int" Nullable="false" />
  25. <Property Name="Commune_Insee" Type="nvarchar" MaxLength="5" />
  26. <Property Name="Commune" Type="nvarchar" MaxLength="255" Nullable="false" />
  27. <Property Name="Canton" Type="nvarchar" MaxLength="255" />
  28. <Property Name="Territoire_Id" Type="nvarchar" MaxLength="10" />
  29. <Property Name="TAD" Type="nvarchar" MaxLength="255" />
  30. <Property Name="CDC" Type="nvarchar" MaxLength="255" />
  31. <Property Name="Tel" Type="nvarchar" MaxLength="255" />
  32. <Property Name="Fax" Type="nvarchar" MaxLength="255" />
  33. <Property Name="Email" Type="nvarchar" MaxLength="255" />
  34. </EntityType>
  35. <EntityType Name="Identites">
  36. <Key>
  37. <PropertyRef Name="College_Id" />
  38. </Key>
  39. <Property Name="College_Id" Type="nvarchar" MaxLength="8" Nullable="false" />
  40. <Property Name="Principal_SID" Type="nvarchar" MaxLength="64" />
  41. <Property Name="Principal_Login" Type="nvarchar" MaxLength="255" />
  42. <Property Name="Principal_Nom" Type="nvarchar" MaxLength="255" />
  43. <Property Name="Principal_Prenom" Type="nvarchar" MaxLength="255" />
  44. <Property Name="Principal_Email" Type="nvarchar" MaxLength="255" />
  45. <Property Name="Principal_Tel" Type="nvarchar" MaxLength="255" />
  46. <Property Name="Principal_Structure" Type="nvarchar" MaxLength="255" />
  47. <Property Name="Adjoint_SID" Type="nvarchar" MaxLength="64" />
  48. <Property Name="Adjoint_Login" Type="nvarchar" MaxLength="255" />
  49. <Property Name="Adjoint_Nom" Type="nvarchar" MaxLength="255" />
  50. <Property Name="Adjoint_Prenom" Type="nvarchar" MaxLength="255" />
  51. <Property Name="Adjoint_Email" Type="nvarchar" MaxLength="255" />
  52. <Property Name="Adjoint_Tel" Type="nvarchar" MaxLength="255" />
  53. <Property Name="Adjoint_Structure" Type="nvarchar" MaxLength="255" />
  54. <Property Name="Gestionnaire_SID" Type="nvarchar" MaxLength="64" />
  55. <Property Name="Gestionnaire_Login" Type="nvarchar" MaxLength="255" />
  56. <Property Name="Gestionnaire_Nom" Type="nvarchar" MaxLength="255" />
  57. <Property Name="Gestionnaire_Prenom" Type="nvarchar" MaxLength="255" />
  58. <Property Name="Gestionnaire_Email" Type="nvarchar" MaxLength="255" />
  59. <Property Name="Gestionnaire_Tel" Type="nvarchar" MaxLength="255" />
  60. <Property Name="Gestionnaire_Structure" Type="nvarchar" MaxLength="255" />
  61. <Property Name="Gestionnaire2_SID" Type="nvarchar" MaxLength="64" />
  62. <Property Name="Gestionnaire2_Login" Type="nvarchar" MaxLength="255" />
  63. <Property Name="Gestionnaire2_Nom" Type="nvarchar" MaxLength="255" />
  64. <Property Name="Gestionnaire2_Prenom" Type="nvarchar" MaxLength="255" />
  65. <Property Name="Gestionnaire2_Email" Type="nvarchar" MaxLength="255" />
  66. <Property Name="Gestionnaire2_Tel" Type="nvarchar" MaxLength="255" />
  67. <Property Name="Gestionnaire2_Structure" Type="nvarchar" MaxLength="255" />
  68. </EntityType>
  69. <EntityType Name="Territoires">
  70. <Key>
  71. <PropertyRef Name="Id" />
  72. </Key>
  73. <Property Name="Id" Type="nvarchar" MaxLength="10" Nullable="false" />
  74. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  75. <Property Name="Referent_SID" Type="nvarchar" MaxLength="64" />
  76. <Property Name="Referent_Nom" Type="nvarchar" MaxLength="255" />
  77. <Property Name="Referent_Prenom" Type="nvarchar" MaxLength="255" />
  78. <Property Name="Referent_Structure" Type="nvarchar" MaxLength="255" />
  79. <Property Name="Referent_Login" Type="nvarchar" MaxLength="255" />
  80. <Property Name="Referent_Email" Type="nvarchar" MaxLength="255" />
  81. <Property Name="Ordre" Type="int" Nullable="false" />
  82. </EntityType>
  83. <EntityType Name="TypesCollege">
  84. <Key>
  85. <PropertyRef Name="Id" />
  86. </Key>
  87. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  88. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  89. <Property Name="Ordre" Type="int" Nullable="false" />
  90. </EntityType>
  91. <Association Name="FK_Actions-CLAS_College">
  92. <End Role="Colleges" Type="Self.Colleges" Multiplicity="1" />
  93. <End Role="Actions-CLAS" Type="Self.Actions-CLAS" Multiplicity="0..1" />
  94. <ReferentialConstraint>
  95. <Principal Role="Colleges">
  96. <PropertyRef Name="Id" />
  97. </Principal>
  98. <Dependent Role="Actions-CLAS">
  99. <PropertyRef Name="College_Id" />
  100. </Dependent>
  101. </ReferentialConstraint>
  102. </Association>
  103. <Association Name="FK_Colleges_Territoires">
  104. <End Role="Territoires" Type="Self.Territoires" Multiplicity="0..1" />
  105. <End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
  106. <ReferentialConstraint>
  107. <Principal Role="Territoires">
  108. <PropertyRef Name="Id" />
  109. </Principal>
  110. <Dependent Role="Colleges">
  111. <PropertyRef Name="Territoire_Id" />
  112. </Dependent>
  113. </ReferentialConstraint>
  114. </Association>
  115. <Association Name="FK_Colleges_TypesCollege">
  116. <End Role="TypesCollege" Type="Self.TypesCollege" Multiplicity="1" />
  117. <End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
  118. <ReferentialConstraint>
  119. <Principal Role="TypesCollege">
  120. <PropertyRef Name="Id" />
  121. </Principal>
  122. <Dependent Role="Colleges">
  123. <PropertyRef Name="TypeCollege_Id" />
  124. </Dependent>
  125. </ReferentialConstraint>
  126. </Association>
  127. <Association Name="FK_FicheIdentite_College">
  128. <End Role="Colleges" Type="Self.Colleges" Multiplicity="1" />
  129. <End Role="Identites" Type="Self.Identites" Multiplicity="0..1" />
  130. <ReferentialConstraint>
  131. <Principal Role="Colleges">
  132. <PropertyRef Name="Id" />
  133. </Principal>
  134. <Dependent Role="Identites">
  135. <PropertyRef Name="College_Id" />
  136. </Dependent>
  137. </ReferentialConstraint>
  138. </Association>
  139. <EntityContainer Name="ModeleMVCStoreContainer">
  140. <EntitySet Name="Actions-CLAS" EntityType="Self.Actions-CLAS" Schema="dbo" store:Type="Tables" />
  141. <EntitySet Name="Colleges" EntityType="Self.Colleges" Schema="dbo" store:Type="Tables" />
  142. <EntitySet Name="Identites" EntityType="Self.Identites" Schema="dbo" store:Type="Tables" />
  143. <EntitySet Name="Territoires" EntityType="Self.Territoires" Schema="dbo" store:Type="Tables" />
  144. <EntitySet Name="TypesCollege" EntityType="Self.TypesCollege" Schema="dbo" store:Type="Tables" />
  145. <AssociationSet Name="FK_Actions-CLAS_College" Association="Self.FK_Actions-CLAS_College">
  146. <End Role="Colleges" EntitySet="Colleges" />
  147. <End Role="Actions-CLAS" EntitySet="Actions-CLAS" />
  148. </AssociationSet>
  149. <AssociationSet Name="FK_Colleges_Territoires" Association="Self.FK_Colleges_Territoires">
  150. <End Role="Territoires" EntitySet="Territoires" />
  151. <End Role="Colleges" EntitySet="Colleges" />
  152. </AssociationSet>
  153. <AssociationSet Name="FK_Colleges_TypesCollege" Association="Self.FK_Colleges_TypesCollege">
  154. <End Role="TypesCollege" EntitySet="TypesCollege" />
  155. <End Role="Colleges" EntitySet="Colleges" />
  156. </AssociationSet>
  157. <AssociationSet Name="FK_FicheIdentite_College" Association="Self.FK_FicheIdentite_College">
  158. <End Role="Colleges" EntitySet="Colleges" />
  159. <End Role="Identites" EntitySet="Identites" />
  160. </AssociationSet>
  161. </EntityContainer>
  162. </Schema></edmx:StorageModels>
  163. <!-- CSDL content -->
  164. <edmx:ConceptualModels>
  165. <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">
  166. <EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
  167. <EntitySet Name="TypesCollege" EntityType="CD67.FicheCollege.TypeCollege" />
  168. <EntitySet Name="Territoires" EntityType="CD67.FicheCollege.Territoire" />
  169. <EntitySet Name="Colleges" EntityType="CD67.FicheCollege.College" />
  170. <AssociationSet Name="FK_Colleges_Territoires" Association="CD67.FicheCollege.FK_Colleges_Territoires">
  171. <End Role="Territoire" EntitySet="Territoires" />
  172. <End Role="College" EntitySet="Colleges" />
  173. </AssociationSet>
  174. <AssociationSet Name="FK_Colleges_TypesCollege" Association="CD67.FicheCollege.FK_Colleges_TypesCollege">
  175. <End Role="TypeCollege" EntitySet="TypesCollege" />
  176. <End Role="College" EntitySet="Colleges" />
  177. </AssociationSet>
  178. <EntitySet Name="Identites" EntityType="CD67.FicheCollege.Identite" />
  179. <AssociationSet Name="FK_FicheIdentite_College" Association="CD67.FicheCollege.FK_FicheIdentite_College">
  180. <End Role="College" EntitySet="Colleges" />
  181. <End Role="Identite" EntitySet="Identites" />
  182. </AssociationSet>
  183. <EntitySet Name="ActionsCLAS" EntityType="CD67.FicheCollege.ActionCLAS" />
  184. <AssociationSet Name="FK_Actions_CLAS_College" Association="CD67.FicheCollege.FK_Actions_CLAS_College">
  185. <End Role="College" EntitySet="Colleges" />
  186. <End Role="Actions_CLAS" EntitySet="ActionsCLAS" />
  187. </AssociationSet>
  188. </EntityContainer>
  189. <EntityType Name="TypeCollege">
  190. <Key>
  191. <PropertyRef Name="Id" />
  192. </Key>
  193. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  194. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  195. <Property Name="Ordre" Type="Int32" Nullable="false" />
  196. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.FK_Colleges_TypesCollege" FromRole="TypeCollege" ToRole="College" />
  197. </EntityType>
  198. <EntityType Name="Territoire">
  199. <Key>
  200. <PropertyRef Name="Id" />
  201. </Key>
  202. <Property Name="Id" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="true" />
  203. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  204. <Property Name="Referent_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  205. <Property Name="Referent_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  206. <Property Name="Referent_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  207. <Property Name="Referent_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  208. <Property Name="Referent_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  209. <Property Name="Referent_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  210. <Property Name="Ordre" Type="Int32" Nullable="false" />
  211. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.FK_Colleges_Territoires" FromRole="Territoire" ToRole="College" />
  212. </EntityType>
  213. <EntityType Name="College">
  214. <Key>
  215. <PropertyRef Name="Id" />
  216. </Key>
  217. <Property Name="Id" Type="String" Nullable="false" MaxLength="8" FixedLength="false" Unicode="true" />
  218. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  219. <Property Name="Adresse" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  220. <Property Name="Code_Postal" Type="String" MaxLength="5" FixedLength="false" Unicode="true" />
  221. <Property Name="TypeCollege_Id" Type="Int32" Nullable="false" />
  222. <Property Name="Commune_Insee" Type="String" MaxLength="5" FixedLength="false" Unicode="true" />
  223. <Property Name="Commune" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  224. <Property Name="Canton" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  225. <Property Name="Territoire_Id" Type="String" MaxLength="10" FixedLength="false" Unicode="true" />
  226. <Property Name="TAD" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  227. <Property Name="CDC" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  228. <Property Name="Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  229. <Property Name="Fax" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  230. <Property Name="Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  231. <NavigationProperty Name="Territoire" Relationship="CD67.FicheCollege.FK_Colleges_Territoires" FromRole="College" ToRole="Territoire" />
  232. <NavigationProperty Name="TypeCollege" Relationship="CD67.FicheCollege.FK_Colleges_TypesCollege" FromRole="College" ToRole="TypeCollege" />
  233. <NavigationProperty Name="Identite" Relationship="CD67.FicheCollege.FK_FicheIdentite_College" FromRole="College" ToRole="Identite" />
  234. <NavigationProperty Name="Actions_CLAS" Relationship="CD67.FicheCollege.FK_Actions_CLAS_College" FromRole="College" ToRole="Actions_CLAS" />
  235. </EntityType>
  236. <Association Name="FK_Colleges_Territoires">
  237. <End Type="CD67.FicheCollege.Territoire" Role="Territoire" Multiplicity="0..1" />
  238. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  239. <ReferentialConstraint>
  240. <Principal Role="Territoire">
  241. <PropertyRef Name="Id" />
  242. </Principal>
  243. <Dependent Role="College">
  244. <PropertyRef Name="Territoire_Id" />
  245. </Dependent>
  246. </ReferentialConstraint>
  247. </Association>
  248. <Association Name="FK_Colleges_TypesCollege">
  249. <End Type="CD67.FicheCollege.TypeCollege" Role="TypeCollege" Multiplicity="1" />
  250. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  251. <ReferentialConstraint>
  252. <Principal Role="TypeCollege">
  253. <PropertyRef Name="Id" />
  254. </Principal>
  255. <Dependent Role="College">
  256. <PropertyRef Name="TypeCollege_Id" />
  257. </Dependent>
  258. </ReferentialConstraint>
  259. </Association>
  260. <EntityType Name="Identite">
  261. <Key>
  262. <PropertyRef Name="College_Id" />
  263. </Key>
  264. <Property Name="College_Id" Type="String" Nullable="false" MaxLength="8" FixedLength="false" Unicode="true" />
  265. <Property Name="Principal_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  266. <Property Name="Principal_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  267. <Property Name="Principal_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  268. <Property Name="Principal_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  269. <Property Name="Principal_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  270. <Property Name="Principal_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  271. <Property Name="Principal_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  272. <Property Name="Adjoint_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  273. <Property Name="Adjoint_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  274. <Property Name="Adjoint_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  275. <Property Name="Adjoint_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  276. <Property Name="Adjoint_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  277. <Property Name="Adjoint_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  278. <Property Name="Adjoint_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  279. <Property Name="Gestionnaire_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  280. <Property Name="Gestionnaire_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  281. <Property Name="Gestionnaire_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  282. <Property Name="Gestionnaire_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  283. <Property Name="Gestionnaire_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  284. <Property Name="Gestionnaire_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  285. <Property Name="Gestionnaire_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  286. <Property Name="Gestionnaire2_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  287. <Property Name="Gestionnaire2_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  288. <Property Name="Gestionnaire2_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  289. <Property Name="Gestionnaire2_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  290. <Property Name="Gestionnaire2_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  291. <Property Name="Gestionnaire2_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  292. <Property Name="Gestionnaire2_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  293. <NavigationProperty Name="College" Relationship="CD67.FicheCollege.FK_FicheIdentite_College" FromRole="Identite" ToRole="College" />
  294. </EntityType>
  295. <Association Name="FK_FicheIdentite_College">
  296. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="1" />
  297. <End Type="CD67.FicheCollege.Identite" Role="Identite" Multiplicity="0..1" />
  298. <ReferentialConstraint>
  299. <Principal Role="College">
  300. <PropertyRef Name="Id" />
  301. </Principal>
  302. <Dependent Role="Identite">
  303. <PropertyRef Name="College_Id" />
  304. </Dependent>
  305. </ReferentialConstraint>
  306. </Association>
  307. <EntityType Name="ActionCLAS">
  308. <Key>
  309. <PropertyRef Name="College_Id" />
  310. </Key>
  311. <Property Name="College_Id" Type="String" Nullable="false" MaxLength="8" FixedLength="false" Unicode="true" />
  312. <Property Name="Action" Type="Boolean" />
  313. <Property Name="Commentaire" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
  314. <NavigationProperty Name="College" Relationship="CD67.FicheCollege.FK_Actions_CLAS_College" FromRole="Actions_CLAS" ToRole="College" />
  315. </EntityType>
  316. <Association Name="FK_Actions_CLAS_College">
  317. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="1" />
  318. <End Type="CD67.FicheCollege.ActionCLAS" Role="Actions_CLAS" Multiplicity="0..1" />
  319. <ReferentialConstraint>
  320. <Principal Role="College">
  321. <PropertyRef Name="Id" />
  322. </Principal>
  323. <Dependent Role="Actions_CLAS">
  324. <PropertyRef Name="College_Id" />
  325. </Dependent>
  326. </ReferentialConstraint>
  327. </Association>
  328. </Schema>
  329. </edmx:ConceptualModels>
  330. <!-- C-S mapping content -->
  331. <edmx:Mappings>
  332. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  333. <EntityContainerMapping StorageEntityContainer="ModeleMVCStoreContainer" CdmEntityContainer="Entities">
  334. <EntitySetMapping Name="TypesCollege">
  335. <EntityTypeMapping TypeName="CD67.FicheCollege.TypeCollege">
  336. <MappingFragment StoreEntitySet="TypesCollege">
  337. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  338. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  339. <ScalarProperty Name="Id" ColumnName="Id" />
  340. </MappingFragment>
  341. </EntityTypeMapping>
  342. </EntitySetMapping>
  343. <EntitySetMapping Name="Territoires">
  344. <EntityTypeMapping TypeName="CD67.FicheCollege.Territoire">
  345. <MappingFragment StoreEntitySet="Territoires">
  346. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  347. <ScalarProperty Name="Referent_Email" ColumnName="Referent_Email" />
  348. <ScalarProperty Name="Referent_Login" ColumnName="Referent_Login" />
  349. <ScalarProperty Name="Referent_Structure" ColumnName="Referent_Structure" />
  350. <ScalarProperty Name="Referent_Prenom" ColumnName="Referent_Prenom" />
  351. <ScalarProperty Name="Referent_Nom" ColumnName="Referent_Nom" />
  352. <ScalarProperty Name="Referent_SID" ColumnName="Referent_SID" />
  353. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  354. <ScalarProperty Name="Id" ColumnName="Id" />
  355. </MappingFragment>
  356. </EntityTypeMapping>
  357. </EntitySetMapping>
  358. <EntitySetMapping Name="Colleges">
  359. <EntityTypeMapping TypeName="CD67.FicheCollege.College">
  360. <MappingFragment StoreEntitySet="Colleges">
  361. <ScalarProperty Name="Email" ColumnName="Email" />
  362. <ScalarProperty Name="Fax" ColumnName="Fax" />
  363. <ScalarProperty Name="Tel" ColumnName="Tel" />
  364. <ScalarProperty Name="CDC" ColumnName="CDC" />
  365. <ScalarProperty Name="TAD" ColumnName="TAD" />
  366. <ScalarProperty Name="Territoire_Id" ColumnName="Territoire_Id" />
  367. <ScalarProperty Name="Canton" ColumnName="Canton" />
  368. <ScalarProperty Name="Commune" ColumnName="Commune" />
  369. <ScalarProperty Name="Commune_Insee" ColumnName="Commune_Insee" />
  370. <ScalarProperty Name="TypeCollege_Id" ColumnName="TypeCollege_Id" />
  371. <ScalarProperty Name="Code_Postal" ColumnName="Code_Postal" />
  372. <ScalarProperty Name="Adresse" ColumnName="Adresse" />
  373. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  374. <ScalarProperty Name="Id" ColumnName="Id" />
  375. </MappingFragment>
  376. </EntityTypeMapping>
  377. </EntitySetMapping>
  378. <EntitySetMapping Name="Identites">
  379. <EntityTypeMapping TypeName="CD67.FicheCollege.Identite">
  380. <MappingFragment StoreEntitySet="Identites">
  381. <ScalarProperty Name="Gestionnaire2_Structure" ColumnName="Gestionnaire2_Structure" />
  382. <ScalarProperty Name="Gestionnaire2_Tel" ColumnName="Gestionnaire2_Tel" />
  383. <ScalarProperty Name="Gestionnaire2_Email" ColumnName="Gestionnaire2_Email" />
  384. <ScalarProperty Name="Gestionnaire2_Prenom" ColumnName="Gestionnaire2_Prenom" />
  385. <ScalarProperty Name="Gestionnaire2_Nom" ColumnName="Gestionnaire2_Nom" />
  386. <ScalarProperty Name="Gestionnaire2_Login" ColumnName="Gestionnaire2_Login" />
  387. <ScalarProperty Name="Gestionnaire2_SID" ColumnName="Gestionnaire2_SID" />
  388. <ScalarProperty Name="Gestionnaire_Structure" ColumnName="Gestionnaire_Structure" />
  389. <ScalarProperty Name="Gestionnaire_Tel" ColumnName="Gestionnaire_Tel" />
  390. <ScalarProperty Name="Gestionnaire_Email" ColumnName="Gestionnaire_Email" />
  391. <ScalarProperty Name="Gestionnaire_Prenom" ColumnName="Gestionnaire_Prenom" />
  392. <ScalarProperty Name="Gestionnaire_Nom" ColumnName="Gestionnaire_Nom" />
  393. <ScalarProperty Name="Gestionnaire_Login" ColumnName="Gestionnaire_Login" />
  394. <ScalarProperty Name="Gestionnaire_SID" ColumnName="Gestionnaire_SID" />
  395. <ScalarProperty Name="Adjoint_Structure" ColumnName="Adjoint_Structure" />
  396. <ScalarProperty Name="Adjoint_Tel" ColumnName="Adjoint_Tel" />
  397. <ScalarProperty Name="Adjoint_Email" ColumnName="Adjoint_Email" />
  398. <ScalarProperty Name="Adjoint_Prenom" ColumnName="Adjoint_Prenom" />
  399. <ScalarProperty Name="Adjoint_Nom" ColumnName="Adjoint_Nom" />
  400. <ScalarProperty Name="Adjoint_Login" ColumnName="Adjoint_Login" />
  401. <ScalarProperty Name="Adjoint_SID" ColumnName="Adjoint_SID" />
  402. <ScalarProperty Name="Principal_Structure" ColumnName="Principal_Structure" />
  403. <ScalarProperty Name="Principal_Tel" ColumnName="Principal_Tel" />
  404. <ScalarProperty Name="Principal_Email" ColumnName="Principal_Email" />
  405. <ScalarProperty Name="Principal_Prenom" ColumnName="Principal_Prenom" />
  406. <ScalarProperty Name="Principal_Nom" ColumnName="Principal_Nom" />
  407. <ScalarProperty Name="Principal_Login" ColumnName="Principal_Login" />
  408. <ScalarProperty Name="Principal_SID" ColumnName="Principal_SID" />
  409. <ScalarProperty Name="College_Id" ColumnName="College_Id" />
  410. </MappingFragment>
  411. </EntityTypeMapping>
  412. </EntitySetMapping>
  413. <EntitySetMapping Name="ActionsCLAS">
  414. <EntityTypeMapping TypeName="CD67.FicheCollege.ActionCLAS">
  415. <MappingFragment StoreEntitySet="Actions-CLAS">
  416. <ScalarProperty Name="Commentaire" ColumnName="Commentaire" />
  417. <ScalarProperty Name="Action" ColumnName="Action" />
  418. <ScalarProperty Name="College_Id" ColumnName="College_Id" />
  419. </MappingFragment>
  420. </EntityTypeMapping>
  421. </EntitySetMapping>
  422. </EntityContainerMapping>
  423. </Mapping></edmx:Mappings>
  424. </edmx:Runtime>
  425. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  426. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  427. <Connection>
  428. <DesignerInfoPropertySet>
  429. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  430. </DesignerInfoPropertySet>
  431. </Connection>
  432. <Options>
  433. <DesignerInfoPropertySet>
  434. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  435. <DesignerProperty Name="EnablePluralization" Value="True" />
  436. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  437. <DesignerProperty Name="UseLegacyProvider" Value="False" />
  438. <DesignerProperty Name="CodeGenerationStrategy" Value="Aucun" />
  439. </DesignerInfoPropertySet>
  440. </Options>
  441. <!-- Diagram content (shape and connector positions) -->
  442. <Diagrams></Diagrams>
  443. </Designer>
  444. </edmx:Edmx>