EntityModel.edmx 41 KB

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