EntityModel.edmx 25 KB

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