EntityModel.edmx 42 KB

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