EntityModel.edmx 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  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="Annees">
  9. <Key>
  10. <PropertyRef Name="Id" />
  11. </Key>
  12. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  13. <Property Name="Libelle" Type="nvarchar" MaxLength="12" Nullable="false" />
  14. </EntityType>
  15. <EntityType Name="Colleges">
  16. <Key>
  17. <PropertyRef Name="Id" />
  18. </Key>
  19. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  20. <Property Name="Annee_Id" Type="int" Nullable="false" />
  21. <Property Name="CodeRne" Type="nvarchar" MaxLength="10" Nullable="false" />
  22. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  23. <Property Name="Adresse" Type="nvarchar" MaxLength="255" />
  24. <Property Name="Code_Postal" Type="nvarchar" MaxLength="5" />
  25. <Property Name="TypeCollege_Id" Type="int" Nullable="false" />
  26. <Property Name="Commune_Insee" Type="nvarchar" MaxLength="5" />
  27. <Property Name="Commune" Type="nvarchar" MaxLength="255" Nullable="false" />
  28. <Property Name="Canton" Type="nvarchar" MaxLength="255" />
  29. <Property Name="Territoire_Id" Type="nvarchar" MaxLength="10" />
  30. <Property Name="TAD" Type="nvarchar" MaxLength="255" />
  31. <Property Name="CDC" Type="nvarchar" MaxLength="255" />
  32. <Property Name="Tel" Type="nvarchar" MaxLength="255" />
  33. <Property Name="Fax" Type="nvarchar" MaxLength="255" />
  34. <Property Name="Email" Type="nvarchar" MaxLength="255" />
  35. </EntityType>
  36. <EntityType Name="Identites">
  37. <Key>
  38. <PropertyRef Name="College_Id" />
  39. </Key>
  40. <Property Name="College_Id" Type="int" Nullable="false" />
  41. <Property Name="Principal_SID" Type="nvarchar" MaxLength="64" />
  42. <Property Name="Principal_Login" Type="nvarchar" MaxLength="255" />
  43. <Property Name="Principal_Nom" Type="nvarchar" MaxLength="255" />
  44. <Property Name="Principal_Prenom" Type="nvarchar" MaxLength="255" />
  45. <Property Name="Principal_Email" Type="nvarchar" MaxLength="255" />
  46. <Property Name="Principal_Tel" Type="nvarchar" MaxLength="255" />
  47. <Property Name="Principal_Structure" Type="nvarchar" MaxLength="255" />
  48. <Property Name="Adjoint_SID" Type="nvarchar" MaxLength="64" />
  49. <Property Name="Adjoint_Login" Type="nvarchar" MaxLength="255" />
  50. <Property Name="Adjoint_Nom" Type="nvarchar" MaxLength="255" />
  51. <Property Name="Adjoint_Prenom" Type="nvarchar" MaxLength="255" />
  52. <Property Name="Adjoint_Email" Type="nvarchar" MaxLength="255" />
  53. <Property Name="Adjoint_Tel" Type="nvarchar" MaxLength="255" />
  54. <Property Name="Adjoint_Structure" Type="nvarchar" MaxLength="255" />
  55. <Property Name="Gestionnaire_SID" Type="nvarchar" MaxLength="64" />
  56. <Property Name="Gestionnaire_Login" Type="nvarchar" MaxLength="255" />
  57. <Property Name="Gestionnaire_Nom" Type="nvarchar" MaxLength="255" />
  58. <Property Name="Gestionnaire_Prenom" Type="nvarchar" MaxLength="255" />
  59. <Property Name="Gestionnaire_Email" Type="nvarchar" MaxLength="255" />
  60. <Property Name="Gestionnaire_Tel" Type="nvarchar" MaxLength="255" />
  61. <Property Name="Gestionnaire_Structure" Type="nvarchar" MaxLength="255" />
  62. <Property Name="Gestionnaire2_SID" Type="nvarchar" MaxLength="64" />
  63. <Property Name="Gestionnaire2_Login" Type="nvarchar" MaxLength="255" />
  64. <Property Name="Gestionnaire2_Nom" Type="nvarchar" MaxLength="255" />
  65. <Property Name="Gestionnaire2_Prenom" Type="nvarchar" MaxLength="255" />
  66. <Property Name="Gestionnaire2_Email" Type="nvarchar" MaxLength="255" />
  67. <Property Name="Gestionnaire2_Tel" Type="nvarchar" MaxLength="255" />
  68. <Property Name="Gestionnaire2_Structure" Type="nvarchar" MaxLength="255" />
  69. </EntityType>
  70. <EntityType Name="Territoires">
  71. <Key>
  72. <PropertyRef Name="Id" />
  73. </Key>
  74. <Property Name="Id" Type="nvarchar" MaxLength="10" Nullable="false" />
  75. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  76. <Property Name="Referent_SID" Type="nvarchar" MaxLength="64" />
  77. <Property Name="Referent_Nom" Type="nvarchar" MaxLength="255" />
  78. <Property Name="Referent_Prenom" Type="nvarchar" MaxLength="255" />
  79. <Property Name="Referent_Structure" Type="nvarchar" MaxLength="255" />
  80. <Property Name="Referent_Login" Type="nvarchar" MaxLength="255" />
  81. <Property Name="Referent_Email" Type="nvarchar" MaxLength="255" />
  82. <Property Name="Ordre" Type="int" Nullable="false" />
  83. </EntityType>
  84. <EntityType Name="TypesCollege">
  85. <Key>
  86. <PropertyRef Name="Id" />
  87. </Key>
  88. <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  89. <Property Name="Libelle" Type="nvarchar" MaxLength="255" Nullable="false" />
  90. <Property Name="Ordre" Type="int" Nullable="false" />
  91. </EntityType>
  92. <Association Name="FK_Annees_Colleges">
  93. <End Role="Annees" Type="Self.Annees" Multiplicity="1" />
  94. <End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
  95. <ReferentialConstraint>
  96. <Principal Role="Annees">
  97. <PropertyRef Name="Id" />
  98. </Principal>
  99. <Dependent Role="Colleges">
  100. <PropertyRef Name="Annee_Id" />
  101. </Dependent>
  102. </ReferentialConstraint>
  103. </Association>
  104. <Association Name="FK_Colleges_Territoires">
  105. <End Role="Territoires" Type="Self.Territoires" Multiplicity="0..1" />
  106. <End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
  107. <ReferentialConstraint>
  108. <Principal Role="Territoires">
  109. <PropertyRef Name="Id" />
  110. </Principal>
  111. <Dependent Role="Colleges">
  112. <PropertyRef Name="Territoire_Id" />
  113. </Dependent>
  114. </ReferentialConstraint>
  115. </Association>
  116. <Association Name="FK_Colleges_TypesCollege">
  117. <End Role="TypesCollege" Type="Self.TypesCollege" Multiplicity="1" />
  118. <End Role="Colleges" Type="Self.Colleges" Multiplicity="*" />
  119. <ReferentialConstraint>
  120. <Principal Role="TypesCollege">
  121. <PropertyRef Name="Id" />
  122. </Principal>
  123. <Dependent Role="Colleges">
  124. <PropertyRef Name="TypeCollege_Id" />
  125. </Dependent>
  126. </ReferentialConstraint>
  127. </Association>
  128. <Association Name="FK_FicheIdentite_College">
  129. <End Role="Colleges" Type="Self.Colleges" Multiplicity="1" />
  130. <End Role="Identites" Type="Self.Identites" Multiplicity="0..1" />
  131. <ReferentialConstraint>
  132. <Principal Role="Colleges">
  133. <PropertyRef Name="Id" />
  134. </Principal>
  135. <Dependent Role="Identites">
  136. <PropertyRef Name="College_Id" />
  137. </Dependent>
  138. </ReferentialConstraint>
  139. </Association>
  140. <EntityContainer Name="CD67FicheCollegeStoreContainer">
  141. <EntitySet Name="Annees" EntityType="Self.Annees" Schema="dbo" store:Type="Tables" />
  142. <EntitySet Name="Colleges" EntityType="Self.Colleges" Schema="dbo" store:Type="Tables" />
  143. <EntitySet Name="Identites" EntityType="Self.Identites" Schema="dbo" store:Type="Tables" />
  144. <EntitySet Name="Territoires" EntityType="Self.Territoires" Schema="dbo" store:Type="Tables" />
  145. <EntitySet Name="TypesCollege" EntityType="Self.TypesCollege" Schema="dbo" store:Type="Tables" />
  146. <AssociationSet Name="FK_Annees_Colleges" Association="Self.FK_Annees_Colleges">
  147. <End Role="Annees" EntitySet="Annees" />
  148. <End Role="Colleges" EntitySet="Colleges" />
  149. </AssociationSet>
  150. <AssociationSet Name="FK_Colleges_Territoires" Association="Self.FK_Colleges_Territoires">
  151. <End Role="Territoires" EntitySet="Territoires" />
  152. <End Role="Colleges" EntitySet="Colleges" />
  153. </AssociationSet>
  154. <AssociationSet Name="FK_Colleges_TypesCollege" Association="Self.FK_Colleges_TypesCollege">
  155. <End Role="TypesCollege" EntitySet="TypesCollege" />
  156. <End Role="Colleges" EntitySet="Colleges" />
  157. </AssociationSet>
  158. <AssociationSet Name="FK_FicheIdentite_College" Association="Self.FK_FicheIdentite_College">
  159. <End Role="Colleges" EntitySet="Colleges" />
  160. <End Role="Identites" EntitySet="Identites" />
  161. </AssociationSet>
  162. </EntityContainer>
  163. </Schema></edmx:StorageModels>
  164. <!-- CSDL content -->
  165. <edmx:ConceptualModels>
  166. <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">
  167. <EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
  168. <EntitySet Name="TypesCollege" EntityType="CD67.FicheCollege.TypeCollege" />
  169. <EntitySet Name="Territoires" EntityType="CD67.FicheCollege.Territoire" />
  170. <EntitySet Name="Colleges" EntityType="CD67.FicheCollege.College" />
  171. <AssociationSet Name="FK_Colleges_Territoires" Association="CD67.FicheCollege.FK_Colleges_Territoires">
  172. <End Role="Territoire" EntitySet="Territoires" />
  173. <End Role="College" EntitySet="Colleges" />
  174. </AssociationSet>
  175. <AssociationSet Name="FK_Colleges_TypesCollege" Association="CD67.FicheCollege.FK_Colleges_TypesCollege">
  176. <End Role="TypeCollege" EntitySet="TypesCollege" />
  177. <End Role="College" EntitySet="Colleges" />
  178. </AssociationSet>
  179. <EntitySet Name="Identites" EntityType="CD67.FicheCollege.Identite" />
  180. <AssociationSet Name="FK_FicheIdentite_College" Association="CD67.FicheCollege.FK_FicheIdentite_College">
  181. <End Role="College" EntitySet="Colleges" />
  182. <End Role="Identite" EntitySet="Identites" />
  183. </AssociationSet>
  184. <EntitySet Name="Annees" EntityType="CD67.FicheCollege.Annee" />
  185. <AssociationSet Name="AnneeCollege" Association="CD67.FicheCollege.AnneeCollege">
  186. <End Role="Annee" EntitySet="Annees" />
  187. <End Role="College" EntitySet="Colleges" />
  188. </AssociationSet>
  189. </EntityContainer>
  190. <EntityType Name="TypeCollege">
  191. <Key>
  192. <PropertyRef Name="Id" />
  193. </Key>
  194. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  195. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  196. <Property Name="Ordre" Type="Int32" Nullable="false" />
  197. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.FK_Colleges_TypesCollege" FromRole="TypeCollege" ToRole="College" />
  198. </EntityType>
  199. <EntityType Name="Territoire">
  200. <Key>
  201. <PropertyRef Name="Id" />
  202. </Key>
  203. <Property Name="Id" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="true" />
  204. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  205. <Property Name="Referent_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  206. <Property Name="Referent_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  207. <Property Name="Referent_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  208. <Property Name="Referent_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  209. <Property Name="Referent_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  210. <Property Name="Referent_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  211. <Property Name="Ordre" Type="Int32" Nullable="false" />
  212. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.FK_Colleges_Territoires" FromRole="Territoire" ToRole="College" />
  213. </EntityType>
  214. <EntityType Name="College">
  215. <Key>
  216. <PropertyRef Name="Id" />
  217. </Key>
  218. <Property Name="Id" Type="Int32" Nullable="false" />
  219. <Property Name="Annee_Id" Type="Int32" Nullable="false" />
  220. <Property Name="CodeRne" Type="String" Nullable="false" MaxLength="10" FixedLength="false" Unicode="true" />
  221. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  222. <Property Name="Adresse" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  223. <Property Name="Code_Postal" Type="String" MaxLength="5" FixedLength="false" Unicode="true" />
  224. <Property Name="TypeCollege_Id" Type="Int32" Nullable="false" />
  225. <Property Name="Commune_Insee" Type="String" MaxLength="5" FixedLength="false" Unicode="true" />
  226. <Property Name="Commune" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="true" />
  227. <Property Name="Canton" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  228. <Property Name="Territoire_Id" Type="String" MaxLength="10" FixedLength="false" Unicode="true" />
  229. <Property Name="TAD" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  230. <Property Name="CDC" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  231. <Property Name="Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  232. <Property Name="Fax" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  233. <Property Name="Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  234. <NavigationProperty Name="Territoire" Relationship="CD67.FicheCollege.FK_Colleges_Territoires" FromRole="College" ToRole="Territoire" />
  235. <NavigationProperty Name="TypeCollege" Relationship="CD67.FicheCollege.FK_Colleges_TypesCollege" FromRole="College" ToRole="TypeCollege" />
  236. <NavigationProperty Name="Identite" Relationship="CD67.FicheCollege.FK_FicheIdentite_College" FromRole="College" ToRole="Identite" />
  237. <NavigationProperty Name="Annee" Relationship="CD67.FicheCollege.AnneeCollege" FromRole="College" ToRole="Annee" />
  238. </EntityType>
  239. <Association Name="FK_Colleges_Territoires">
  240. <End Type="CD67.FicheCollege.Territoire" Role="Territoire" Multiplicity="0..1" />
  241. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  242. <ReferentialConstraint>
  243. <Principal Role="Territoire">
  244. <PropertyRef Name="Id" />
  245. </Principal>
  246. <Dependent Role="College">
  247. <PropertyRef Name="Territoire_Id" />
  248. </Dependent>
  249. </ReferentialConstraint>
  250. </Association>
  251. <Association Name="FK_Colleges_TypesCollege">
  252. <End Type="CD67.FicheCollege.TypeCollege" Role="TypeCollege" Multiplicity="1" />
  253. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  254. <ReferentialConstraint>
  255. <Principal Role="TypeCollege">
  256. <PropertyRef Name="Id" />
  257. </Principal>
  258. <Dependent Role="College">
  259. <PropertyRef Name="TypeCollege_Id" />
  260. </Dependent>
  261. </ReferentialConstraint>
  262. </Association>
  263. <EntityType Name="Identite">
  264. <Key>
  265. <PropertyRef Name="College_Id" />
  266. </Key>
  267. <Property Name="College_Id" Type="Int32" Nullable="false" />
  268. <Property Name="Principal_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  269. <Property Name="Principal_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  270. <Property Name="Principal_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  271. <Property Name="Principal_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  272. <Property Name="Principal_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  273. <Property Name="Principal_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  274. <Property Name="Principal_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  275. <Property Name="Adjoint_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  276. <Property Name="Adjoint_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  277. <Property Name="Adjoint_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  278. <Property Name="Adjoint_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  279. <Property Name="Adjoint_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  280. <Property Name="Adjoint_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  281. <Property Name="Adjoint_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  282. <Property Name="Gestionnaire_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  283. <Property Name="Gestionnaire_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  284. <Property Name="Gestionnaire_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  285. <Property Name="Gestionnaire_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  286. <Property Name="Gestionnaire_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  287. <Property Name="Gestionnaire_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  288. <Property Name="Gestionnaire_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  289. <Property Name="Gestionnaire2_SID" Type="String" MaxLength="64" FixedLength="false" Unicode="true" />
  290. <Property Name="Gestionnaire2_Login" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  291. <Property Name="Gestionnaire2_Nom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  292. <Property Name="Gestionnaire2_Prenom" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  293. <Property Name="Gestionnaire2_Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  294. <Property Name="Gestionnaire2_Tel" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  295. <Property Name="Gestionnaire2_Structure" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
  296. <NavigationProperty Name="College" Relationship="CD67.FicheCollege.FK_FicheIdentite_College" FromRole="Identite" ToRole="College" />
  297. </EntityType>
  298. <Association Name="FK_FicheIdentite_College">
  299. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="1" />
  300. <End Type="CD67.FicheCollege.Identite" Role="Identite" Multiplicity="0..1" />
  301. <ReferentialConstraint>
  302. <Principal Role="College">
  303. <PropertyRef Name="Id" />
  304. </Principal>
  305. <Dependent Role="Identite">
  306. <PropertyRef Name="College_Id" />
  307. </Dependent>
  308. </ReferentialConstraint>
  309. </Association>
  310. <EntityType Name="Annee">
  311. <Key>
  312. <PropertyRef Name="Id" />
  313. </Key>
  314. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  315. <NavigationProperty Name="Colleges" Relationship="CD67.FicheCollege.AnneeCollege" FromRole="Annee" ToRole="College" />
  316. <Property Name="Libelle" Type="String" Nullable="false" MaxLength="12" FixedLength="false" Unicode="true" />
  317. </EntityType>
  318. <Association Name="AnneeCollege">
  319. <End Type="CD67.FicheCollege.Annee" Role="Annee" Multiplicity="1" />
  320. <End Type="CD67.FicheCollege.College" Role="College" Multiplicity="*" />
  321. <ReferentialConstraint>
  322. <Principal Role="Annee">
  323. <PropertyRef Name="Id" />
  324. </Principal>
  325. <Dependent Role="College">
  326. <PropertyRef Name="Annee_Id" />
  327. </Dependent>
  328. </ReferentialConstraint>
  329. </Association>
  330. </Schema>
  331. </edmx:ConceptualModels>
  332. <!-- C-S mapping content -->
  333. <edmx:Mappings>
  334. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  335. <EntityContainerMapping StorageEntityContainer="CD67FicheCollegeStoreContainer" CdmEntityContainer="Entities">
  336. <EntitySetMapping Name="TypesCollege">
  337. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.TypeCollege)">
  338. <MappingFragment StoreEntitySet="TypesCollege">
  339. <ScalarProperty Name="Id" ColumnName="Id" />
  340. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  341. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  342. </MappingFragment>
  343. </EntityTypeMapping>
  344. </EntitySetMapping>
  345. <EntitySetMapping Name="Territoires">
  346. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Territoire)">
  347. <MappingFragment StoreEntitySet="Territoires">
  348. <ScalarProperty Name="Id" ColumnName="Id" />
  349. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  350. <ScalarProperty Name="Referent_SID" ColumnName="Referent_SID" />
  351. <ScalarProperty Name="Referent_Nom" ColumnName="Referent_Nom" />
  352. <ScalarProperty Name="Referent_Prenom" ColumnName="Referent_Prenom" />
  353. <ScalarProperty Name="Referent_Structure" ColumnName="Referent_Structure" />
  354. <ScalarProperty Name="Referent_Login" ColumnName="Referent_Login" />
  355. <ScalarProperty Name="Referent_Email" ColumnName="Referent_Email" />
  356. <ScalarProperty Name="Ordre" ColumnName="Ordre" />
  357. </MappingFragment>
  358. </EntityTypeMapping>
  359. </EntitySetMapping>
  360. <EntitySetMapping Name="Colleges">
  361. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.College)">
  362. <MappingFragment StoreEntitySet="Colleges">
  363. <ScalarProperty Name="CodeRne" ColumnName="CodeRne" />
  364. <ScalarProperty Name="Id" ColumnName="Id" />
  365. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  366. <ScalarProperty Name="Adresse" ColumnName="Adresse" />
  367. <ScalarProperty Name="Code_Postal" ColumnName="Code_Postal" />
  368. <ScalarProperty Name="TypeCollege_Id" ColumnName="TypeCollege_Id" />
  369. <ScalarProperty Name="Commune_Insee" ColumnName="Commune_Insee" />
  370. <ScalarProperty Name="Commune" ColumnName="Commune" />
  371. <ScalarProperty Name="Canton" ColumnName="Canton" />
  372. <ScalarProperty Name="Territoire_Id" ColumnName="Territoire_Id" />
  373. <ScalarProperty Name="TAD" ColumnName="TAD" />
  374. <ScalarProperty Name="CDC" ColumnName="CDC" />
  375. <ScalarProperty Name="Tel" ColumnName="Tel" />
  376. <ScalarProperty Name="Fax" ColumnName="Fax" />
  377. <ScalarProperty Name="Email" ColumnName="Email" />
  378. <ScalarProperty Name="Annee_Id" ColumnName="Annee_Id" />
  379. </MappingFragment>
  380. </EntityTypeMapping>
  381. </EntitySetMapping>
  382. <EntitySetMapping Name="Identites">
  383. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Identite)">
  384. <MappingFragment StoreEntitySet="Identites">
  385. <ScalarProperty Name="College_Id" ColumnName="College_Id" />
  386. <ScalarProperty Name="Principal_SID" ColumnName="Principal_SID" />
  387. <ScalarProperty Name="Principal_Login" ColumnName="Principal_Login" />
  388. <ScalarProperty Name="Principal_Nom" ColumnName="Principal_Nom" />
  389. <ScalarProperty Name="Principal_Prenom" ColumnName="Principal_Prenom" />
  390. <ScalarProperty Name="Principal_Email" ColumnName="Principal_Email" />
  391. <ScalarProperty Name="Principal_Tel" ColumnName="Principal_Tel" />
  392. <ScalarProperty Name="Principal_Structure" ColumnName="Principal_Structure" />
  393. <ScalarProperty Name="Adjoint_SID" ColumnName="Adjoint_SID" />
  394. <ScalarProperty Name="Adjoint_Login" ColumnName="Adjoint_Login" />
  395. <ScalarProperty Name="Adjoint_Nom" ColumnName="Adjoint_Nom" />
  396. <ScalarProperty Name="Adjoint_Prenom" ColumnName="Adjoint_Prenom" />
  397. <ScalarProperty Name="Adjoint_Email" ColumnName="Adjoint_Email" />
  398. <ScalarProperty Name="Adjoint_Tel" ColumnName="Adjoint_Tel" />
  399. <ScalarProperty Name="Adjoint_Structure" ColumnName="Adjoint_Structure" />
  400. <ScalarProperty Name="Gestionnaire_SID" ColumnName="Gestionnaire_SID" />
  401. <ScalarProperty Name="Gestionnaire_Login" ColumnName="Gestionnaire_Login" />
  402. <ScalarProperty Name="Gestionnaire_Nom" ColumnName="Gestionnaire_Nom" />
  403. <ScalarProperty Name="Gestionnaire_Prenom" ColumnName="Gestionnaire_Prenom" />
  404. <ScalarProperty Name="Gestionnaire_Email" ColumnName="Gestionnaire_Email" />
  405. <ScalarProperty Name="Gestionnaire_Tel" ColumnName="Gestionnaire_Tel" />
  406. <ScalarProperty Name="Gestionnaire_Structure" ColumnName="Gestionnaire_Structure" />
  407. <ScalarProperty Name="Gestionnaire2_SID" ColumnName="Gestionnaire2_SID" />
  408. <ScalarProperty Name="Gestionnaire2_Login" ColumnName="Gestionnaire2_Login" />
  409. <ScalarProperty Name="Gestionnaire2_Nom" ColumnName="Gestionnaire2_Nom" />
  410. <ScalarProperty Name="Gestionnaire2_Prenom" ColumnName="Gestionnaire2_Prenom" />
  411. <ScalarProperty Name="Gestionnaire2_Email" ColumnName="Gestionnaire2_Email" />
  412. <ScalarProperty Name="Gestionnaire2_Tel" ColumnName="Gestionnaire2_Tel" />
  413. <ScalarProperty Name="Gestionnaire2_Structure" ColumnName="Gestionnaire2_Structure" />
  414. </MappingFragment>
  415. </EntityTypeMapping>
  416. </EntitySetMapping>
  417. <EntitySetMapping Name="Annees">
  418. <EntityTypeMapping TypeName="IsTypeOf(CD67.FicheCollege.Annee)">
  419. <MappingFragment StoreEntitySet="Annees">
  420. <ScalarProperty Name="Libelle" ColumnName="Libelle" />
  421. <ScalarProperty Name="Id" ColumnName="Id" />
  422. </MappingFragment>
  423. </EntityTypeMapping>
  424. </EntitySetMapping>
  425. </EntityContainerMapping>
  426. </Mapping></edmx:Mappings>
  427. </edmx:Runtime>
  428. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  429. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  430. <Connection>
  431. <DesignerInfoPropertySet>
  432. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  433. </DesignerInfoPropertySet>
  434. </Connection>
  435. <Options>
  436. <DesignerInfoPropertySet>
  437. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  438. <DesignerProperty Name="EnablePluralization" Value="True" />
  439. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  440. <DesignerProperty Name="UseLegacyProvider" Value="False" />
  441. <DesignerProperty Name="CodeGenerationStrategy" Value="Aucun" />
  442. </DesignerInfoPropertySet>
  443. </Options>
  444. <!-- Diagram content (shape and connector positions) -->
  445. <Diagrams></Diagrams>
  446. </Designer>
  447. </edmx:Edmx>