EntityModel.edmx 39 KB

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