EntityModel.edmx 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  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="CD67.FicheCollege.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">
  8. <EntityContainer Name="CD67FicheCollegeStoreContainer">
  9. <EntitySet Name="TypesCollege" EntityType="CD67.FicheCollege.Store.TypesCollege" store:Type="Tables" Schema="dbo" />
  10. <EntitySet Name="Territoires" EntityType="CD67.FicheCollege.Store.Territoires" store:Type="Tables" Schema="dbo" />
  11. <EntitySet Name="Colleges" EntityType="CD67.FicheCollege.Store.Colleges" store:Type="Tables" Schema="dbo" />
  12. <EntitySet Name="Identites" EntityType="CD67.FicheCollege.Store.Identites" store:Type="Tables" Schema="dbo" />
  13. <EntitySet Name="Annees" EntityType="CD67.FicheCollege.Store.Annees" store:Type="Tables" Schema="dbo" />
  14. <EntitySet Name="ActionEduAxes" EntityType="CD67.FicheCollege.Store.ActionEduAxes" store:Type="Tables" Schema="dbo" />
  15. <EntitySet Name="ActionEduThematiques" EntityType="CD67.FicheCollege.Store.ActionEduThematiques" store:Type="Tables" Schema="dbo" />
  16. <EntitySet Name="ActionsEdu" EntityType="CD67.FicheCollege.Store.ActionsEdu" store:Type="Tables" Schema="dbo" />
  17. <AssociationSet Name="FK_Colleges_Territoires" Association="CD67.FicheCollege.Store.FK_Colleges_Territoires">
  18. <End Role="Territoire" EntitySet="Territoires" />
  19. <End Role="College" EntitySet="Colleges" />
  20. </AssociationSet>
  21. <AssociationSet Name="FK_Colleges_TypesCollege" Association="CD67.FicheCollege.Store.FK_Colleges_TypesCollege">
  22. <End Role="TypeCollege" EntitySet="TypesCollege" />
  23. <End Role="College" EntitySet="Colleges" />
  24. </AssociationSet>
  25. <AssociationSet Name="FK_FicheIdentite_College" Association="CD67.FicheCollege.Store.FK_FicheIdentite_College">
  26. <End Role="College" EntitySet="Colleges" />
  27. <End Role="Identite" EntitySet="Identites" />
  28. </AssociationSet>
  29. <AssociationSet Name="AnneeCollege" Association="CD67.FicheCollege.Store.AnneeCollege">
  30. <End Role="Annee" EntitySet="Annees" />
  31. <End Role="College" EntitySet="Colleges" />
  32. </AssociationSet>
  33. <AssociationSet Name="ActionEduAxeActionEduThematique" Association="CD67.FicheCollege.Store.ActionEduAxeActionEduThematique">
  34. <End Role="ActionEduAxe" EntitySet="ActionEduAxes" />
  35. <End Role="ActionEduThematique" EntitySet="ActionEduThematiques" />
  36. </AssociationSet>
  37. <AssociationSet Name="ActionEduThematiqueActionEdu" Association="CD67.FicheCollege.Store.ActionEduThematiqueActionEdu">
  38. <End Role="ActionEduThematique" EntitySet="ActionEduThematiques" />
  39. <End Role="ActionEdu" EntitySet="ActionsEdu" />
  40. </AssociationSet>
  41. <AssociationSet Name="ActionEduAnnee" Association="CD67.FicheCollege.Store.ActionEduAnnee">
  42. <End Role="ActionEdu" EntitySet="ActionsEdu" />
  43. <End Role="Annee" EntitySet="Annees" />
  44. </AssociationSet>
  45. </EntityContainer>
  46. <EntityType Name="TypesCollege">
  47. <Key>
  48. <PropertyRef Name="Id" />
  49. </Key>
  50. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  51. <Property Name="Libelle" Type="nvarchar" Nullable="false" MaxLength="255" />
  52. <Property Name="Ordre" Type="int" Nullable="false" />
  53. </EntityType>
  54. <EntityType Name="Territoires">
  55. <Key>
  56. <PropertyRef Name="Id" />
  57. </Key>
  58. <Property Name="Id" Type="nvarchar" Nullable="false" MaxLength="10" />
  59. <Property Name="Libelle" Type="nvarchar" Nullable="false" MaxLength="255" />
  60. <Property Name="Referent_SID" Type="nvarchar" Nullable="true" MaxLength="64" />
  61. <Property Name="Referent_Nom" Type="nvarchar" Nullable="true" MaxLength="255" />
  62. <Property Name="Referent_Prenom" Type="nvarchar" Nullable="true" MaxLength="255" />
  63. <Property Name="Referent_Structure" Type="nvarchar" Nullable="true" MaxLength="255" />
  64. <Property Name="Referent_Login" Type="nvarchar" Nullable="true" MaxLength="255" />
  65. <Property Name="Referent_Email" Type="nvarchar" Nullable="true" MaxLength="255" />
  66. <Property Name="Ordre" Type="int" Nullable="false" />
  67. </EntityType>
  68. <EntityType Name="Colleges">
  69. <Key>
  70. <PropertyRef Name="Id" />
  71. </Key>
  72. <Property Name="Id" Type="int" Nullable="false" />
  73. <Property Name="Annee_Id" Type="int" Nullable="false" />
  74. <Property Name="CodeRne" Type="nvarchar" Nullable="false" MaxLength="10" />
  75. <Property Name="Libelle" Type="nvarchar" Nullable="false" MaxLength="255" />
  76. <Property Name="Adresse" Type="nvarchar" Nullable="true" MaxLength="255" />
  77. <Property Name="Code_Postal" Type="nvarchar" Nullable="true" MaxLength="5" />
  78. <Property Name="TypeCollege_Id" Type="int" Nullable="false" />
  79. <Property Name="Commune_Insee" Type="nvarchar" Nullable="true" MaxLength="5" />
  80. <Property Name="Commune" Type="nvarchar" Nullable="false" MaxLength="255" />
  81. <Property Name="Canton" Type="nvarchar" Nullable="true" MaxLength="255" />
  82. <Property Name="Territoire_Id" Type="nvarchar" Nullable="true" MaxLength="10" />
  83. <Property Name="TAD" Type="nvarchar" Nullable="true" MaxLength="255" />
  84. <Property Name="CDC" Type="nvarchar" Nullable="true" MaxLength="255" />
  85. <Property Name="Tel" Type="nvarchar" Nullable="true" MaxLength="255" />
  86. <Property Name="Fax" Type="nvarchar" Nullable="true" MaxLength="255" />
  87. <Property Name="Email" Type="nvarchar" Nullable="true" MaxLength="255" />
  88. </EntityType>
  89. <EntityType Name="Identites">
  90. <Key>
  91. <PropertyRef Name="College_Id" />
  92. </Key>
  93. <Property Name="College_Id" Type="int" Nullable="false" />
  94. <Property Name="Principal_SID" Type="nvarchar" Nullable="true" MaxLength="64" />
  95. <Property Name="Principal_Login" Type="nvarchar" Nullable="true" MaxLength="255" />
  96. <Property Name="Principal_Nom" Type="nvarchar" Nullable="true" MaxLength="255" />
  97. <Property Name="Principal_Prenom" Type="nvarchar" Nullable="true" MaxLength="255" />
  98. <Property Name="Principal_Email" Type="nvarchar" Nullable="true" MaxLength="255" />
  99. <Property Name="Principal_Tel" Type="nvarchar" Nullable="true" MaxLength="255" />
  100. <Property Name="Principal_Structure" Type="nvarchar" Nullable="true" MaxLength="255" />
  101. <Property Name="Adjoint_SID" Type="nvarchar" Nullable="true" MaxLength="64" />
  102. <Property Name="Adjoint_Login" Type="nvarchar" Nullable="true" MaxLength="255" />
  103. <Property Name="Adjoint_Nom" Type="nvarchar" Nullable="true" MaxLength="255" />
  104. <Property Name="Adjoint_Prenom" Type="nvarchar" Nullable="true" MaxLength="255" />
  105. <Property Name="Adjoint_Email" Type="nvarchar" Nullable="true" MaxLength="255" />
  106. <Property Name="Adjoint_Tel" Type="nvarchar" Nullable="true" MaxLength="255" />
  107. <Property Name="Adjoint_Structure" Type="nvarchar" Nullable="true" MaxLength="255" />
  108. <Property Name="Gestionnaire_SID" Type="nvarchar" Nullable="true" MaxLength="64" />
  109. <Property Name="Gestionnaire_Login" Type="nvarchar" Nullable="true" MaxLength="255" />
  110. <Property Name="Gestionnaire_Nom" Type="nvarchar" Nullable="true" MaxLength="255" />
  111. <Property Name="Gestionnaire_Prenom" Type="nvarchar" Nullable="true" MaxLength="255" />
  112. <Property Name="Gestionnaire_Email" Type="nvarchar" Nullable="true" MaxLength="255" />
  113. <Property Name="Gestionnaire_Tel" Type="nvarchar" Nullable="true" MaxLength="255" />
  114. <Property Name="Gestionnaire_Structure" Type="nvarchar" Nullable="true" MaxLength="255" />
  115. <Property Name="Gestionnaire2_SID" Type="nvarchar" Nullable="true" MaxLength="64" />
  116. <Property Name="Gestionnaire2_Login" Type="nvarchar" Nullable="true" MaxLength="255" />
  117. <Property Name="Gestionnaire2_Nom" Type="nvarchar" Nullable="true" MaxLength="255" />
  118. <Property Name="Gestionnaire2_Prenom" Type="nvarchar" Nullable="true" MaxLength="255" />
  119. <Property Name="Gestionnaire2_Email" Type="nvarchar" Nullable="true" MaxLength="255" />
  120. <Property Name="Gestionnaire2_Tel" Type="nvarchar" Nullable="true" MaxLength="255" />
  121. <Property Name="Gestionnaire2_Structure" Type="nvarchar" Nullable="true" MaxLength="255" />
  122. </EntityType>
  123. <EntityType Name="Annees">
  124. <Key>
  125. <PropertyRef Name="Id" />
  126. </Key>
  127. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  128. <Property Name="Libelle" Type="nvarchar" Nullable="false" MaxLength="12" />
  129. </EntityType>
  130. <EntityType Name="ActionEduAxes">
  131. <Key>
  132. <PropertyRef Name="Id" />
  133. </Key>
  134. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  135. <Property Name="Nom" Type="nvarchar(max)" Nullable="false" />
  136. <Property Name="Neutralise" Type="bit" Nullable="false" DefaultValue="false" />
  137. <Property Name="Ordre" Type="int" Nullable="false" />
  138. </EntityType>
  139. <EntityType Name="ActionEduThematiques">
  140. <Key>
  141. <PropertyRef Name="Id" />
  142. </Key>
  143. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  144. <Property Name="Nom" Type="nvarchar(max)" Nullable="false" />
  145. <Property Name="Neutralise" Type="bit" Nullable="false" DefaultValue="false" />
  146. <Property Name="Ordre" Type="int" Nullable="false" />
  147. <Property Name="ActionEduAxeId" Type="int" Nullable="false" />
  148. </EntityType>
  149. <EntityType Name="ActionsEdu">
  150. <Key>
  151. <PropertyRef Name="Id" />
  152. </Key>
  153. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  154. <Property Name="Numero" Type="nvarchar(max)" Nullable="false" DefaultValue="0" />
  155. <Property Name="Nom" Type="nvarchar(max)" Nullable="false" />
  156. <Property Name="Description" Type="nvarchar(max)" Nullable="false" />
  157. <Property Name="Neutralise" Type="bit" Nullable="false" />
  158. <Property Name="Ordre" Type="int" Nullable="false" />
  159. <Property Name="ActionEduThematiqueId" Type="int" Nullable="false" />
  160. <Property Name="AnneeId" Type="int" Nullable="false" />
  161. </EntityType>
  162. <Association Name="FK_Colleges_Territoires">
  163. <End Role="Territoire" Type="CD67.FicheCollege.Store.Territoires" Multiplicity="0..1" />
  164. <End Role="College" Type="CD67.FicheCollege.Store.Colleges" Multiplicity="*" />
  165. <ReferentialConstraint>
  166. <Principal Role="Territoire">
  167. <PropertyRef Name="Id" />
  168. </Principal>
  169. <Dependent Role="College">
  170. <PropertyRef Name="Territoire_Id" />
  171. </Dependent>
  172. </ReferentialConstraint>
  173. </Association>
  174. <Association Name="FK_Colleges_TypesCollege">
  175. <End Role="TypeCollege" Type="CD67.FicheCollege.Store.TypesCollege" Multiplicity="1" />
  176. <End Role="College" Type="CD67.FicheCollege.Store.Colleges" Multiplicity="*" />
  177. <ReferentialConstraint>
  178. <Principal Role="TypeCollege">
  179. <PropertyRef Name="Id" />
  180. </Principal>
  181. <Dependent Role="College">
  182. <PropertyRef Name="TypeCollege_Id" />
  183. </Dependent>
  184. </ReferentialConstraint>
  185. </Association>
  186. <Association Name="FK_FicheIdentite_College">
  187. <End Role="College" Type="CD67.FicheCollege.Store.Colleges" Multiplicity="1" />
  188. <End Role="Identite" Type="CD67.FicheCollege.Store.Identites" Multiplicity="0..1" />
  189. <ReferentialConstraint>
  190. <Principal Role="College">
  191. <PropertyRef Name="Id" />
  192. </Principal>
  193. <Dependent Role="Identite">
  194. <PropertyRef Name="College_Id" />
  195. </Dependent>
  196. </ReferentialConstraint>
  197. </Association>
  198. <Association Name="AnneeCollege">
  199. <End Role="Annee" Type="CD67.FicheCollege.Store.Annees" Multiplicity="1" />
  200. <End Role="College" Type="CD67.FicheCollege.Store.Colleges" Multiplicity="*" />
  201. <ReferentialConstraint>
  202. <Principal Role="Annee">
  203. <PropertyRef Name="Id" />
  204. </Principal>
  205. <Dependent Role="College">
  206. <PropertyRef Name="Annee_Id" />
  207. </Dependent>
  208. </ReferentialConstraint>
  209. </Association>
  210. <Association Name="ActionEduAxeActionEduThematique">
  211. <End Role="ActionEduAxe" Type="CD67.FicheCollege.Store.ActionEduAxes" Multiplicity="1" />
  212. <End Role="ActionEduThematique" Type="CD67.FicheCollege.Store.ActionEduThematiques" Multiplicity="*" />
  213. <ReferentialConstraint>
  214. <Principal Role="ActionEduAxe">
  215. <PropertyRef Name="Id" />
  216. </Principal>
  217. <Dependent Role="ActionEduThematique">
  218. <PropertyRef Name="ActionEduAxeId" />
  219. </Dependent>
  220. </ReferentialConstraint>
  221. </Association>
  222. <Association Name="ActionEduThematiqueActionEdu">
  223. <End Role="ActionEduThematique" Type="CD67.FicheCollege.Store.ActionEduThematiques" Multiplicity="1" />
  224. <End Role="ActionEdu" Type="CD67.FicheCollege.Store.ActionsEdu" Multiplicity="*" />
  225. <ReferentialConstraint>
  226. <Principal Role="ActionEduThematique">
  227. <PropertyRef Name="Id" />
  228. </Principal>
  229. <Dependent Role="ActionEdu">
  230. <PropertyRef Name="ActionEduThematiqueId" />
  231. </Dependent>
  232. </ReferentialConstraint>
  233. </Association>
  234. <Association Name="ActionEduAnnee">
  235. <End Role="ActionEdu" Type="CD67.FicheCollege.Store.ActionsEdu" Multiplicity="*" />
  236. <End Role="Annee" Type="CD67.FicheCollege.Store.Annees" Multiplicity="1" />
  237. <ReferentialConstraint>
  238. <Principal Role="Annee">
  239. <PropertyRef Name="Id" />
  240. </Principal>
  241. <Dependent Role="ActionEdu">
  242. <PropertyRef Name="AnneeId" />
  243. </Dependent>
  244. </ReferentialConstraint>
  245. </Association>
  246. </Schema></edmx:StorageModels>
  247. <!-- CSDL content -->
  248. <edmx:ConceptualModels>
  249. <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">
  250. <EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
  251. <EntitySet Name="TypesCollege" EntityType="CD67.FicheCollege.TypeCollege" />
  252. <EntitySet Name="Territoires" EntityType="CD67.FicheCollege.Territoire" />
  253. <EntitySet Name="Colleges" EntityType="CD67.FicheCollege.College" />
  254. <AssociationSet Name="FK_Colleges_Territoires" Association="CD67.FicheCollege.FK_Colleges_Territoires">
  255. <End Role="Territoire" EntitySet="Territoires" />
  256. <End Role="College" EntitySet="Colleges" />
  257. </AssociationSet>
  258. <AssociationSet Name="FK_Colleges_TypesCollege" Association="CD67.FicheCollege.FK_Colleges_TypesCollege">
  259. <End Role="TypeCollege" EntitySet="TypesCollege" />
  260. <End Role="College" EntitySet="Colleges" />
  261. </AssociationSet>
  262. <EntitySet Name="Identites" EntityType="CD67.FicheCollege.Identite" />
  263. <AssociationSet Name="FK_FicheIdentite_College" Association="CD67.FicheCollege.FK_FicheIdentite_College">
  264. <End Role="College" EntitySet="Colleges" />
  265. <End Role="Identite" EntitySet="Identites" />
  266. </AssociationSet>
  267. <EntitySet Name="Annees" EntityType="CD67.FicheCollege.Annee" />
  268. <AssociationSet Name="AnneeCollege" Association="CD67.FicheCollege.AnneeCollege">
  269. <End Role="Annee" EntitySet="Annees" />
  270. <End Role="College" EntitySet="Colleges" />
  271. </AssociationSet>
  272. <EntitySet Name="ActionEduAxes" EntityType="CD67.FicheCollege.ActionEduAxe" />
  273. <EntitySet Name="ActionEduThematiques" EntityType="CD67.FicheCollege.ActionEduThematique" />
  274. <EntitySet Name="ActionsEdu" EntityType="CD67.FicheCollege.ActionEdu" />
  275. <AssociationSet Name="ActionEduAxeActionEduThematique" Association="CD67.FicheCollege.ActionEduAxeActionEduThematique">
  276. <End Role="ActionEduAxe" EntitySet="ActionEduAxes" />
  277. <End Role="ActionEduThematique" EntitySet="ActionEduThematiques" />
  278. </AssociationSet>
  279. <AssociationSet Name="ActionEduThematiqueActionEdu" Association="CD67.FicheCollege.ActionEduThematiqueActionEdu">
  280. <End Role="ActionEduThematique" EntitySet="ActionEduThematiques" />
  281. <End Role="ActionEdu" EntitySet="ActionsEdu" />
  282. </AssociationSet>
  283. <AssociationSet Name="ActionEduAnnee" Association="CD67.FicheCollege.ActionEduAnnee">
  284. <End Role="ActionEdu" EntitySet="ActionsEdu" />
  285. <End Role="Annee" EntitySet="Annees" />
  286. </AssociationSet>
  287. </EntityContainer>
  288. <EntityType Name="TypeCollege">
  289. <Key>
  290. <PropertyRef Name="Id" />
  291. </Key>
  292. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  293. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  294. <Property Name="Ordre" Type="Int32" Nullable="false" />
  295. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.FK_Colleges_TypesCollege" FromRole="TypeCollege" ToRole="College" />
  296. </EntityType>
  297. <EntityType Name="Territoire">
  298. <Key>
  299. <PropertyRef Name="Id" />
  300. </Key>
  301. <Property Name="Id" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="true" />
  302. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  303. <Property Name="Referent_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  304. <Property Name="Referent_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  305. <Property Name="Referent_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  306. <Property Name="Referent_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  307. <Property Name="Referent_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  308. <Property Name="Referent_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  309. <Property Name="Ordre" Type="Int32" Nullable="false" />
  310. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.FK_Colleges_Territoires" FromRole="Territoire" ToRole="College" />
  311. </EntityType>
  312. <EntityType Name="College">
  313. <Key>
  314. <PropertyRef Name="Id" />
  315. </Key>
  316. <Property Name="Id" Type="Int32" Nullable="false" />
  317. <Property Name="Annee_Id" Type="Int32" Nullable="false" />
  318. <Property Name="CodeRne" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="true" />
  319. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  320. <Property Name="Adresse" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  321. <Property Name="Code_Postal" Type="String" MaxLength="5" FixedLength="false" Unicode="true" />
  322. <Property Name="TypeCollege_Id" Type="Int32" Nullable="false" />
  323. <Property Name="Commune_Insee" Type="String" MaxLength="5" FixedLength="false" Unicode="true" />
  324. <Property Name="Commune" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  325. <Property Name="Canton" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  326. <Property Name="Territoire_Id" Type="String" MaxLength="10" FixedLength="false" Unicode="true" />
  327. <Property Name="TAD" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  328. <Property Name="CDC" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  329. <Property Name="Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  330. <Property Name="Fax" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  331. <Property Name="Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  332. <NavigationProperty Name="Territoire" Relationship="CD67.FicheCollege.FK_Colleges_Territoires" FromRole="College" ToRole="Territoire" />
  333. <NavigationProperty Name="TypeCollege" Relationship="CD67.FicheCollege.FK_Colleges_TypesCollege" FromRole="College" ToRole="TypeCollege" />
  334. <NavigationProperty Name="Identite" Relationship="CD67.FicheCollege.FK_FicheIdentite_College" FromRole="College" ToRole="Identite" />
  335. <NavigationProperty Name="Annee" Relationship="CD67.FicheCollege.AnneeCollege" FromRole="College" ToRole="Annee" />
  336. </EntityType>
  337. <Association Name="FK_Colleges_Territoires">
  338. <End Type="CD67.FicheCollege.Territoire" Role="Territoire" Multiplicity="0..1" />
  339. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  340. <ReferentialConstraint>
  341. <Principal Role="Territoire">
  342. <PropertyRef Name="Id" />
  343. </Principal>
  344. <Dependent Role="College">
  345. <PropertyRef Name="Territoire_Id" />
  346. </Dependent>
  347. </ReferentialConstraint>
  348. </Association>
  349. <Association Name="FK_Colleges_TypesCollege">
  350. <End Type="CD67.FicheCollege.TypeCollege" Role="TypeCollege" Multiplicity="1" />
  351. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  352. <ReferentialConstraint>
  353. <Principal Role="TypeCollege">
  354. <PropertyRef Name="Id" />
  355. </Principal>
  356. <Dependent Role="College">
  357. <PropertyRef Name="TypeCollege_Id" />
  358. </Dependent>
  359. </ReferentialConstraint>
  360. </Association>
  361. <EntityType Name="Identite">
  362. <Key>
  363. <PropertyRef Name="College_Id" />
  364. </Key>
  365. <Property Name="College_Id" Type="Int32" Nullable="false" />
  366. <Property Name="Principal_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  367. <Property Name="Principal_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  368. <Property Name="Principal_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  369. <Property Name="Principal_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  370. <Property Name="Principal_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  371. <Property Name="Principal_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  372. <Property Name="Principal_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  373. <Property Name="Adjoint_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  374. <Property Name="Adjoint_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  375. <Property Name="Adjoint_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  376. <Property Name="Adjoint_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  377. <Property Name="Adjoint_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  378. <Property Name="Adjoint_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  379. <Property Name="Adjoint_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  380. <Property Name="Gestionnaire_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  381. <Property Name="Gestionnaire_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  382. <Property Name="Gestionnaire_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  383. <Property Name="Gestionnaire_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  384. <Property Name="Gestionnaire_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  385. <Property Name="Gestionnaire_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  386. <Property Name="Gestionnaire_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  387. <Property Name="Gestionnaire2_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  388. <Property Name="Gestionnaire2_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  389. <Property Name="Gestionnaire2_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  390. <Property Name="Gestionnaire2_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  391. <Property Name="Gestionnaire2_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  392. <Property Name="Gestionnaire2_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  393. <Property Name="Gestionnaire2_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  394. <NavigationProperty Name="College" Relationship="CD67.FicheCollege.FK_FicheIdentite_College" FromRole="Identite" ToRole="College" />
  395. </EntityType>
  396. <Association Name="FK_FicheIdentite_College">
  397. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="1" />
  398. <End Type="CD67.FicheCollege.Identite" Role="Identite" Multiplicity="0..1" />
  399. <ReferentialConstraint>
  400. <Principal Role="College">
  401. <PropertyRef Name="Id" />
  402. </Principal>
  403. <Dependent Role="Identite">
  404. <PropertyRef Name="College_Id" />
  405. </Dependent>
  406. </ReferentialConstraint>
  407. </Association>
  408. <EntityType Name="Annee">
  409. <Key>
  410. <PropertyRef Name="Id" />
  411. </Key>
  412. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  413. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.AnneeCollege" FromRole="Annee" ToRole="College" />
  414. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="12" FixedLength="false" Unicode="true" />
  415. <NavigationProperty Name="ActionsEdu" Relationship="CD67.FicheCollege.ActionEduAnnee" FromRole="Annee" ToRole="ActionEdu" />
  416. </EntityType>
  417. <Association Name="AnneeCollege">
  418. <End Type="CD67.FicheCollege.Annee" Role="Annee" Multiplicity="1" />
  419. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  420. <ReferentialConstraint>
  421. <Principal Role="Annee">
  422. <PropertyRef Name="Id" />
  423. </Principal>
  424. <Dependent Role="College">
  425. <PropertyRef Name="Annee_Id" />
  426. </Dependent>
  427. </ReferentialConstraint>
  428. </Association>
  429. <EntityType Name="ActionEduAxe">
  430. <Key>
  431. <PropertyRef Name="Id" />
  432. </Key>
  433. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  434. <Property Name="Nom" Type="String" Nullable="false" MaxLength="Max" Unicode="true" FixedLength="false" />
  435. <Property Name="Neutralise" Type="Boolean" Nullable="false" DefaultValue="False" />
  436. <Property Name="Ordre" Type="Int32" Nullable="false" />
  437. <NavigationProperty Name="ActionEduThematiques" Relationship="CD67.FicheCollege.ActionEduAxeActionEduThematique" FromRole="ActionEduAxe" ToRole="ActionEduThematique" />
  438. </EntityType>
  439. <EntityType Name="ActionEduThematique">
  440. <Key>
  441. <PropertyRef Name="Id" />
  442. </Key>
  443. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  444. <Property Name="Nom" Type="String" Nullable="false" MaxLength="Max" Unicode="true" FixedLength="false" />
  445. <Property Name="Neutralise" Type="Boolean" Nullable="false" DefaultValue="False" />
  446. <Property Name="Ordre" Type="Int32" Nullable="false" />
  447. <NavigationProperty Name="ActionEduAxe" Relationship="CD67.FicheCollege.ActionEduAxeActionEduThematique" FromRole="ActionEduThematique" ToRole="ActionEduAxe" />
  448. <Property Name="ActionEduAxeId" Type="Int32" Nullable="false" />
  449. <NavigationProperty Name="ActionEdus" Relationship="CD67.FicheCollege.ActionEduThematiqueActionEdu" FromRole="ActionEduThematique" ToRole="ActionEdu" />
  450. </EntityType>
  451. <EntityType Name="ActionEdu">
  452. <Key>
  453. <PropertyRef Name="Id" />
  454. </Key>
  455. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  456. <Property Name="Numero" Type="String" Nullable="false" DefaultValue="0" />
  457. <Property Name="Nom" Type="String" Nullable="false" MaxLength="Max" Unicode="true" FixedLength="false" />
  458. <Property Name="Description" Type="String" Nullable="false" MaxLength="Max" Unicode="true" FixedLength="false" />
  459. <Property Name="Neutralise" Type="Boolean" Nullable="false" />
  460. <Property Name="Ordre" Type="Int32" Nullable="false" />
  461. <NavigationProperty Name="ActionEduThematique" Relationship="CD67.FicheCollege.ActionEduThematiqueActionEdu" FromRole="ActionEdu" ToRole="ActionEduThematique" />
  462. <Property Name="ActionEduThematiqueId" Type="Int32" Nullable="false" />
  463. <NavigationProperty Name="Annee" Relationship="CD67.FicheCollege.ActionEduAnnee" FromRole="ActionEdu" ToRole="Annee" />
  464. <Property Name="AnneeId" Type="Int32" Nullable="false" />
  465. </EntityType>
  466. <Association Name="ActionEduAxeActionEduThematique">
  467. <End Type="CD67.FicheCollege.ActionEduAxe" Role="ActionEduAxe" Multiplicity="1" />
  468. <End Type="CD67.FicheCollege.ActionEduThematique" Role="ActionEduThematique" Multiplicity="*" />
  469. <ReferentialConstraint>
  470. <Principal Role="ActionEduAxe">
  471. <PropertyRef Name="Id" />
  472. </Principal>
  473. <Dependent Role="ActionEduThematique">
  474. <PropertyRef Name="ActionEduAxeId" />
  475. </Dependent>
  476. </ReferentialConstraint>
  477. </Association>
  478. <Association Name="ActionEduThematiqueActionEdu">
  479. <End Type="CD67.FicheCollege.ActionEduThematique" Role="ActionEduThematique" Multiplicity="1" />
  480. <End Type="CD67.FicheCollege.ActionEdu" Role="ActionEdu" Multiplicity="*" />
  481. <ReferentialConstraint>
  482. <Principal Role="ActionEduThematique">
  483. <PropertyRef Name="Id" />
  484. </Principal>
  485. <Dependent Role="ActionEdu">
  486. <PropertyRef Name="ActionEduThematiqueId" />
  487. </Dependent>
  488. </ReferentialConstraint>
  489. </Association>
  490. <Association Name="ActionEduAnnee">
  491. <End Type="CD67.FicheCollege.ActionEdu" Role="ActionEdu" Multiplicity="*" />
  492. <End Type="CD67.FicheCollege.Annee" Role="Annee" Multiplicity="1" />
  493. <ReferentialConstraint>
  494. <Principal Role="Annee">
  495. <PropertyRef Name="Id" />
  496. </Principal>
  497. <Dependent Role="ActionEdu">
  498. <PropertyRef Name="AnneeId" />
  499. </Dependent>
  500. </ReferentialConstraint>
  501. </Association>
  502. </Schema>
  503. </edmx:ConceptualModels>
  504. <!-- C-S mapping content -->
  505. <edmx:Mappings>
  506. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  507. <EntityContainerMapping StorageEntityContainer="CD67FicheCollegeStoreContainer" CdmEntityContainer="Entities">
  508. <EntitySetMapping Name="TypesCollege">
  509. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.TypeCollege)">
  510. <MappingFragment StoreEntitySet="TypesCollege">
  511. <ScalarProperty Name="Id" ColumnName="Id" />
  512. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  513. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  514. </MappingFragment>
  515. </EntityTypeMapping>
  516. </EntitySetMapping>
  517. <EntitySetMapping Name="Territoires">
  518. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Territoire)">
  519. <MappingFragment StoreEntitySet="Territoires">
  520. <ScalarProperty Name="Id" ColumnName="Id" />
  521. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  522. <ScalarProperty Name="Referent_SID" ColumnName="Referent_SID" />
  523. <ScalarProperty Name="Referent_Nom" ColumnName="Referent_Nom" />
  524. <ScalarProperty Name="Referent_Prenom" ColumnName="Referent_Prenom" />
  525. <ScalarProperty Name="Referent_Structure" ColumnName="Referent_Structure" />
  526. <ScalarProperty Name="Referent_Login" ColumnName="Referent_Login" />
  527. <ScalarProperty Name="Referent_Email" ColumnName="Referent_Email" />
  528. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  529. </MappingFragment>
  530. </EntityTypeMapping>
  531. </EntitySetMapping>
  532. <EntitySetMapping Name="Colleges">
  533. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.College)">
  534. <MappingFragment StoreEntitySet="Colleges">
  535. <ScalarProperty Name="Id" ColumnName="Id" />
  536. <ScalarProperty Name="Annee_Id" ColumnName="Annee_Id" />
  537. <ScalarProperty Name="CodeRne" ColumnName="CodeRne" />
  538. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  539. <ScalarProperty Name="Adresse" ColumnName="Adresse" />
  540. <ScalarProperty Name="Code_Postal" ColumnName="Code_Postal" />
  541. <ScalarProperty Name="TypeCollege_Id" ColumnName="TypeCollege_Id" />
  542. <ScalarProperty Name="Commune_Insee" ColumnName="Commune_Insee" />
  543. <ScalarProperty Name="Commune" ColumnName="Commune" />
  544. <ScalarProperty Name="Canton" ColumnName="Canton" />
  545. <ScalarProperty Name="Territoire_Id" ColumnName="Territoire_Id" />
  546. <ScalarProperty Name="TAD" ColumnName="TAD" />
  547. <ScalarProperty Name="CDC" ColumnName="CDC" />
  548. <ScalarProperty Name="Tel" ColumnName="Tel" />
  549. <ScalarProperty Name="Fax" ColumnName="Fax" />
  550. <ScalarProperty Name="Email" ColumnName="Email" />
  551. </MappingFragment>
  552. </EntityTypeMapping>
  553. </EntitySetMapping>
  554. <EntitySetMapping Name="Identites">
  555. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Identite)">
  556. <MappingFragment StoreEntitySet="Identites">
  557. <ScalarProperty Name="College_Id" ColumnName="College_Id" />
  558. <ScalarProperty Name="Principal_SID" ColumnName="Principal_SID" />
  559. <ScalarProperty Name="Principal_Login" ColumnName="Principal_Login" />
  560. <ScalarProperty Name="Principal_Nom" ColumnName="Principal_Nom" />
  561. <ScalarProperty Name="Principal_Prenom" ColumnName="Principal_Prenom" />
  562. <ScalarProperty Name="Principal_Email" ColumnName="Principal_Email" />
  563. <ScalarProperty Name="Principal_Tel" ColumnName="Principal_Tel" />
  564. <ScalarProperty Name="Principal_Structure" ColumnName="Principal_Structure" />
  565. <ScalarProperty Name="Adjoint_SID" ColumnName="Adjoint_SID" />
  566. <ScalarProperty Name="Adjoint_Login" ColumnName="Adjoint_Login" />
  567. <ScalarProperty Name="Adjoint_Nom" ColumnName="Adjoint_Nom" />
  568. <ScalarProperty Name="Adjoint_Prenom" ColumnName="Adjoint_Prenom" />
  569. <ScalarProperty Name="Adjoint_Email" ColumnName="Adjoint_Email" />
  570. <ScalarProperty Name="Adjoint_Tel" ColumnName="Adjoint_Tel" />
  571. <ScalarProperty Name="Adjoint_Structure" ColumnName="Adjoint_Structure" />
  572. <ScalarProperty Name="Gestionnaire_SID" ColumnName="Gestionnaire_SID" />
  573. <ScalarProperty Name="Gestionnaire_Login" ColumnName="Gestionnaire_Login" />
  574. <ScalarProperty Name="Gestionnaire_Nom" ColumnName="Gestionnaire_Nom" />
  575. <ScalarProperty Name="Gestionnaire_Prenom" ColumnName="Gestionnaire_Prenom" />
  576. <ScalarProperty Name="Gestionnaire_Email" ColumnName="Gestionnaire_Email" />
  577. <ScalarProperty Name="Gestionnaire_Tel" ColumnName="Gestionnaire_Tel" />
  578. <ScalarProperty Name="Gestionnaire_Structure" ColumnName="Gestionnaire_Structure" />
  579. <ScalarProperty Name="Gestionnaire2_SID" ColumnName="Gestionnaire2_SID" />
  580. <ScalarProperty Name="Gestionnaire2_Login" ColumnName="Gestionnaire2_Login" />
  581. <ScalarProperty Name="Gestionnaire2_Nom" ColumnName="Gestionnaire2_Nom" />
  582. <ScalarProperty Name="Gestionnaire2_Prenom" ColumnName="Gestionnaire2_Prenom" />
  583. <ScalarProperty Name="Gestionnaire2_Email" ColumnName="Gestionnaire2_Email" />
  584. <ScalarProperty Name="Gestionnaire2_Tel" ColumnName="Gestionnaire2_Tel" />
  585. <ScalarProperty Name="Gestionnaire2_Structure" ColumnName="Gestionnaire2_Structure" />
  586. </MappingFragment>
  587. </EntityTypeMapping>
  588. </EntitySetMapping>
  589. <EntitySetMapping Name="Annees">
  590. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Annee)">
  591. <MappingFragment StoreEntitySet="Annees">
  592. <ScalarProperty Name="Id" ColumnName="Id" />
  593. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  594. </MappingFragment>
  595. </EntityTypeMapping>
  596. </EntitySetMapping>
  597. <EntitySetMapping Name="ActionEduAxes">
  598. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.ActionEduAxe)">
  599. <MappingFragment StoreEntitySet="ActionEduAxes">
  600. <ScalarProperty Name="Id" ColumnName="Id" />
  601. <ScalarProperty Name="Nom" ColumnName="Nom" />
  602. <ScalarProperty Name="Neutralise" ColumnName="Neutralise" />
  603. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  604. </MappingFragment>
  605. </EntityTypeMapping>
  606. </EntitySetMapping>
  607. <EntitySetMapping Name="ActionEduThematiques">
  608. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.ActionEduThematique)">
  609. <MappingFragment StoreEntitySet="ActionEduThematiques">
  610. <ScalarProperty Name="Id" ColumnName="Id" />
  611. <ScalarProperty Name="Nom" ColumnName="Nom" />
  612. <ScalarProperty Name="Neutralise" ColumnName="Neutralise" />
  613. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  614. <ScalarProperty Name="ActionEduAxeId" ColumnName="ActionEduAxeId" />
  615. </MappingFragment>
  616. </EntityTypeMapping>
  617. </EntitySetMapping>
  618. <EntitySetMapping Name="ActionsEdu">
  619. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.ActionEdu)">
  620. <MappingFragment StoreEntitySet="ActionsEdu">
  621. <ScalarProperty Name="Id" ColumnName="Id" />
  622. <ScalarProperty Name="Numero" ColumnName="Numero" />
  623. <ScalarProperty Name="Nom" ColumnName="Nom" />
  624. <ScalarProperty Name="Description" ColumnName="Description" />
  625. <ScalarProperty Name="Neutralise" ColumnName="Neutralise" />
  626. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  627. <ScalarProperty Name="ActionEduThematiqueId" ColumnName="ActionEduThematiqueId" />
  628. <ScalarProperty Name="AnneeId" ColumnName="AnneeId" />
  629. </MappingFragment>
  630. </EntityTypeMapping>
  631. </EntitySetMapping>
  632. </EntityContainerMapping>
  633. </Mapping></edmx:Mappings>
  634. </edmx:Runtime>
  635. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  636. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  637. <Connection>
  638. <DesignerInfoPropertySet>
  639. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  640. </DesignerInfoPropertySet>
  641. </Connection>
  642. <Options>
  643. <DesignerInfoPropertySet>
  644. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  645. <DesignerProperty Name="EnablePluralization" Value="True" />
  646. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  647. <DesignerProperty Name="UseLegacyProvider" Value="False" />
  648. <DesignerProperty Name="CodeGenerationStrategy" Value="Aucun" />
  649. </DesignerInfoPropertySet>
  650. </Options>
  651. <!-- Diagram content (shape and connector positions) -->
  652. <Diagrams></Diagrams>
  653. </Designer>
  654. </edmx:Edmx>