EntityModel.edmx 41 KB

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