Model1.edmx 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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="Хранилище ExamPm01Model" 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="metrics">
  9. <Key>
  10. <PropertyRef Name="id" />
  11. </Key>
  12. <Property Name="id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  13. <Property Name="metric" Type="varchar(max)" />
  14. </EntityType>
  15. <EntityType Name="posts">
  16. <Key>
  17. <PropertyRef Name="id" />
  18. </Key>
  19. <Property Name="id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  20. <Property Name="title" Type="varchar" MaxLength="30" />
  21. <Property Name="id_role" Type="int" />
  22. </EntityType>
  23. <EntityType Name="postsmetrics">
  24. <Key>
  25. <PropertyRef Name="id" />
  26. </Key>
  27. <Property Name="id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  28. <Property Name="id_metric" Type="int" />
  29. <Property Name="id_post" Type="int" />
  30. </EntityType>
  31. <EntityType Name="roles">
  32. <Key>
  33. <PropertyRef Name="id" />
  34. </Key>
  35. <Property Name="id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  36. <Property Name="role" Type="varchar" MaxLength="15" />
  37. </EntityType>
  38. <EntityType Name="users">
  39. <Key>
  40. <PropertyRef Name="id" />
  41. </Key>
  42. <Property Name="id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  43. <Property Name="surname" Type="varchar" MaxLength="30" />
  44. <Property Name="firstname" Type="varchar" MaxLength="20" />
  45. <Property Name="patronymic" Type="varchar" MaxLength="35" />
  46. <Property Name="id_post" Type="int" />
  47. <Property Name="email" Type="varchar" MaxLength="50" />
  48. <Property Name="password" Type="varchar(max)" />
  49. </EntityType>
  50. <EntityType Name="usersmetrics">
  51. <Key>
  52. <PropertyRef Name="id" />
  53. </Key>
  54. <Property Name="id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  55. <Property Name="id_user" Type="int" />
  56. <Property Name="id_metric" Type="int" />
  57. <Property Name="coefficient" Type="float" />
  58. <Property Name="dateofachievement" Type="date" />
  59. </EntityType>
  60. <Association Name="posts_roles_fk">
  61. <End Role="roles" Type="Self.roles" Multiplicity="0..1" />
  62. <End Role="posts" Type="Self.posts" Multiplicity="*" />
  63. <ReferentialConstraint>
  64. <Principal Role="roles">
  65. <PropertyRef Name="id" />
  66. </Principal>
  67. <Dependent Role="posts">
  68. <PropertyRef Name="id_role" />
  69. </Dependent>
  70. </ReferentialConstraint>
  71. </Association>
  72. <Association Name="postsmetrics_id_metric_fkey">
  73. <End Role="metrics" Type="Self.metrics" Multiplicity="0..1" />
  74. <End Role="postsmetrics" Type="Self.postsmetrics" Multiplicity="*" />
  75. <ReferentialConstraint>
  76. <Principal Role="metrics">
  77. <PropertyRef Name="id" />
  78. </Principal>
  79. <Dependent Role="postsmetrics">
  80. <PropertyRef Name="id_metric" />
  81. </Dependent>
  82. </ReferentialConstraint>
  83. </Association>
  84. <Association Name="postsmetrics_id_post_fkey">
  85. <End Role="posts" Type="Self.posts" Multiplicity="0..1" />
  86. <End Role="postsmetrics" Type="Self.postsmetrics" Multiplicity="*" />
  87. <ReferentialConstraint>
  88. <Principal Role="posts">
  89. <PropertyRef Name="id" />
  90. </Principal>
  91. <Dependent Role="postsmetrics">
  92. <PropertyRef Name="id_post" />
  93. </Dependent>
  94. </ReferentialConstraint>
  95. </Association>
  96. <Association Name="users_id_post_fkey">
  97. <End Role="posts" Type="Self.posts" Multiplicity="0..1" />
  98. <End Role="users" Type="Self.users" Multiplicity="*" />
  99. <ReferentialConstraint>
  100. <Principal Role="posts">
  101. <PropertyRef Name="id" />
  102. </Principal>
  103. <Dependent Role="users">
  104. <PropertyRef Name="id_post" />
  105. </Dependent>
  106. </ReferentialConstraint>
  107. </Association>
  108. <Association Name="usersmetrics_id_metric_fkey">
  109. <End Role="metrics" Type="Self.metrics" Multiplicity="0..1" />
  110. <End Role="usersmetrics" Type="Self.usersmetrics" Multiplicity="*" />
  111. <ReferentialConstraint>
  112. <Principal Role="metrics">
  113. <PropertyRef Name="id" />
  114. </Principal>
  115. <Dependent Role="usersmetrics">
  116. <PropertyRef Name="id_metric" />
  117. </Dependent>
  118. </ReferentialConstraint>
  119. </Association>
  120. <Association Name="usersmetrics_id_user_fkey">
  121. <End Role="users" Type="Self.users" Multiplicity="0..1" />
  122. <End Role="usersmetrics" Type="Self.usersmetrics" Multiplicity="*" />
  123. <ReferentialConstraint>
  124. <Principal Role="users">
  125. <PropertyRef Name="id" />
  126. </Principal>
  127. <Dependent Role="usersmetrics">
  128. <PropertyRef Name="id_user" />
  129. </Dependent>
  130. </ReferentialConstraint>
  131. </Association>
  132. <EntityContainer Name="Хранилище ExamPm01ModelContainer">
  133. <EntitySet Name="metrics" EntityType="Self.metrics" Schema="dbo" store:Type="Tables" />
  134. <EntitySet Name="posts" EntityType="Self.posts" Schema="dbo" store:Type="Tables" />
  135. <EntitySet Name="postsmetrics" EntityType="Self.postsmetrics" Schema="dbo" store:Type="Tables" />
  136. <EntitySet Name="roles" EntityType="Self.roles" Schema="dbo" store:Type="Tables" />
  137. <EntitySet Name="users" EntityType="Self.users" Schema="dbo" store:Type="Tables" />
  138. <EntitySet Name="usersmetrics" EntityType="Self.usersmetrics" Schema="dbo" store:Type="Tables" />
  139. <AssociationSet Name="posts_roles_fk" Association="Self.posts_roles_fk">
  140. <End Role="roles" EntitySet="roles" />
  141. <End Role="posts" EntitySet="posts" />
  142. </AssociationSet>
  143. <AssociationSet Name="postsmetrics_id_metric_fkey" Association="Self.postsmetrics_id_metric_fkey">
  144. <End Role="metrics" EntitySet="metrics" />
  145. <End Role="postsmetrics" EntitySet="postsmetrics" />
  146. </AssociationSet>
  147. <AssociationSet Name="postsmetrics_id_post_fkey" Association="Self.postsmetrics_id_post_fkey">
  148. <End Role="posts" EntitySet="posts" />
  149. <End Role="postsmetrics" EntitySet="postsmetrics" />
  150. </AssociationSet>
  151. <AssociationSet Name="users_id_post_fkey" Association="Self.users_id_post_fkey">
  152. <End Role="posts" EntitySet="posts" />
  153. <End Role="users" EntitySet="users" />
  154. </AssociationSet>
  155. <AssociationSet Name="usersmetrics_id_metric_fkey" Association="Self.usersmetrics_id_metric_fkey">
  156. <End Role="metrics" EntitySet="metrics" />
  157. <End Role="usersmetrics" EntitySet="usersmetrics" />
  158. </AssociationSet>
  159. <AssociationSet Name="usersmetrics_id_user_fkey" Association="Self.usersmetrics_id_user_fkey">
  160. <End Role="users" EntitySet="users" />
  161. <End Role="usersmetrics" EntitySet="usersmetrics" />
  162. </AssociationSet>
  163. </EntityContainer>
  164. </Schema>
  165. </edmx:StorageModels>
  166. <!-- CSDL content -->
  167. <edmx:ConceptualModels>
  168. <Schema Namespace="ExamPm01Model" 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">
  169. <EntityType Name="metrics">
  170. <Key>
  171. <PropertyRef Name="id" />
  172. </Key>
  173. <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  174. <Property Name="metric" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  175. <NavigationProperty Name="postsmetrics" Relationship="Self.postsmetrics_id_metric_fkey" FromRole="metrics" ToRole="postsmetrics" />
  176. <NavigationProperty Name="usersmetrics" Relationship="Self.usersmetrics_id_metric_fkey" FromRole="metrics" ToRole="usersmetrics" />
  177. </EntityType>
  178. <EntityType Name="posts">
  179. <Key>
  180. <PropertyRef Name="id" />
  181. </Key>
  182. <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  183. <Property Name="title" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  184. <Property Name="id_role" Type="Int32" />
  185. <NavigationProperty Name="roles" Relationship="Self.posts_roles_fk" FromRole="posts" ToRole="roles" />
  186. <NavigationProperty Name="postsmetrics" Relationship="Self.postsmetrics_id_post_fkey" FromRole="posts" ToRole="postsmetrics" />
  187. <NavigationProperty Name="users" Relationship="Self.users_id_post_fkey" FromRole="posts" ToRole="users" />
  188. </EntityType>
  189. <EntityType Name="postsmetrics">
  190. <Key>
  191. <PropertyRef Name="id" />
  192. </Key>
  193. <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  194. <Property Name="id_metric" Type="Int32" />
  195. <Property Name="id_post" Type="Int32" />
  196. <NavigationProperty Name="metrics" Relationship="Self.postsmetrics_id_metric_fkey" FromRole="postsmetrics" ToRole="metrics" />
  197. <NavigationProperty Name="posts" Relationship="Self.postsmetrics_id_post_fkey" FromRole="postsmetrics" ToRole="posts" />
  198. </EntityType>
  199. <EntityType Name="roles">
  200. <Key>
  201. <PropertyRef Name="id" />
  202. </Key>
  203. <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  204. <Property Name="role" Type="String" MaxLength="15" FixedLength="false" Unicode="false" />
  205. <NavigationProperty Name="posts" Relationship="Self.posts_roles_fk" FromRole="roles" ToRole="posts" />
  206. </EntityType>
  207. <EntityType Name="users">
  208. <Key>
  209. <PropertyRef Name="id" />
  210. </Key>
  211. <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  212. <Property Name="surname" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
  213. <Property Name="firstname" Type="String" MaxLength="20" FixedLength="false" Unicode="false" />
  214. <Property Name="patronymic" Type="String" MaxLength="35" FixedLength="false" Unicode="false" />
  215. <Property Name="id_post" Type="Int32" />
  216. <Property Name="email" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
  217. <Property Name="password" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" />
  218. <NavigationProperty Name="posts" Relationship="Self.users_id_post_fkey" FromRole="users" ToRole="posts" />
  219. <NavigationProperty Name="usersmetrics" Relationship="Self.usersmetrics_id_user_fkey" FromRole="users" ToRole="usersmetrics" />
  220. </EntityType>
  221. <EntityType Name="usersmetrics">
  222. <Key>
  223. <PropertyRef Name="id" />
  224. </Key>
  225. <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  226. <Property Name="id_user" Type="Int32" />
  227. <Property Name="id_metric" Type="Int32" />
  228. <Property Name="coefficient" Type="Double" />
  229. <Property Name="dateofachievement" Type="DateTime" Precision="0" />
  230. <NavigationProperty Name="metrics" Relationship="Self.usersmetrics_id_metric_fkey" FromRole="usersmetrics" ToRole="metrics" />
  231. <NavigationProperty Name="users" Relationship="Self.usersmetrics_id_user_fkey" FromRole="usersmetrics" ToRole="users" />
  232. </EntityType>
  233. <Association Name="postsmetrics_id_metric_fkey">
  234. <End Role="metrics" Type="Self.metrics" Multiplicity="0..1" />
  235. <End Role="postsmetrics" Type="Self.postsmetrics" Multiplicity="*" />
  236. <ReferentialConstraint>
  237. <Principal Role="metrics">
  238. <PropertyRef Name="id" />
  239. </Principal>
  240. <Dependent Role="postsmetrics">
  241. <PropertyRef Name="id_metric" />
  242. </Dependent>
  243. </ReferentialConstraint>
  244. </Association>
  245. <Association Name="usersmetrics_id_metric_fkey">
  246. <End Role="metrics" Type="Self.metrics" Multiplicity="0..1" />
  247. <End Role="usersmetrics" Type="Self.usersmetrics" Multiplicity="*" />
  248. <ReferentialConstraint>
  249. <Principal Role="metrics">
  250. <PropertyRef Name="id" />
  251. </Principal>
  252. <Dependent Role="usersmetrics">
  253. <PropertyRef Name="id_metric" />
  254. </Dependent>
  255. </ReferentialConstraint>
  256. </Association>
  257. <Association Name="posts_roles_fk">
  258. <End Role="roles" Type="Self.roles" Multiplicity="0..1" />
  259. <End Role="posts" Type="Self.posts" Multiplicity="*" />
  260. <ReferentialConstraint>
  261. <Principal Role="roles">
  262. <PropertyRef Name="id" />
  263. </Principal>
  264. <Dependent Role="posts">
  265. <PropertyRef Name="id_role" />
  266. </Dependent>
  267. </ReferentialConstraint>
  268. </Association>
  269. <Association Name="postsmetrics_id_post_fkey">
  270. <End Role="posts" Type="Self.posts" Multiplicity="0..1" />
  271. <End Role="postsmetrics" Type="Self.postsmetrics" Multiplicity="*" />
  272. <ReferentialConstraint>
  273. <Principal Role="posts">
  274. <PropertyRef Name="id" />
  275. </Principal>
  276. <Dependent Role="postsmetrics">
  277. <PropertyRef Name="id_post" />
  278. </Dependent>
  279. </ReferentialConstraint>
  280. </Association>
  281. <Association Name="users_id_post_fkey">
  282. <End Role="posts" Type="Self.posts" Multiplicity="0..1" />
  283. <End Role="users" Type="Self.users" Multiplicity="*" />
  284. <ReferentialConstraint>
  285. <Principal Role="posts">
  286. <PropertyRef Name="id" />
  287. </Principal>
  288. <Dependent Role="users">
  289. <PropertyRef Name="id_post" />
  290. </Dependent>
  291. </ReferentialConstraint>
  292. </Association>
  293. <Association Name="usersmetrics_id_user_fkey">
  294. <End Role="users" Type="Self.users" Multiplicity="0..1" />
  295. <End Role="usersmetrics" Type="Self.usersmetrics" Multiplicity="*" />
  296. <ReferentialConstraint>
  297. <Principal Role="users">
  298. <PropertyRef Name="id" />
  299. </Principal>
  300. <Dependent Role="usersmetrics">
  301. <PropertyRef Name="id_user" />
  302. </Dependent>
  303. </ReferentialConstraint>
  304. </Association>
  305. <EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
  306. <EntitySet Name="metrics" EntityType="Self.metrics" />
  307. <EntitySet Name="posts" EntityType="Self.posts" />
  308. <EntitySet Name="postsmetrics" EntityType="Self.postsmetrics" />
  309. <EntitySet Name="roles" EntityType="Self.roles" />
  310. <EntitySet Name="users" EntityType="Self.users" />
  311. <EntitySet Name="usersmetrics" EntityType="Self.usersmetrics" />
  312. <AssociationSet Name="postsmetrics_id_metric_fkey" Association="Self.postsmetrics_id_metric_fkey">
  313. <End Role="metrics" EntitySet="metrics" />
  314. <End Role="postsmetrics" EntitySet="postsmetrics" />
  315. </AssociationSet>
  316. <AssociationSet Name="usersmetrics_id_metric_fkey" Association="Self.usersmetrics_id_metric_fkey">
  317. <End Role="metrics" EntitySet="metrics" />
  318. <End Role="usersmetrics" EntitySet="usersmetrics" />
  319. </AssociationSet>
  320. <AssociationSet Name="posts_roles_fk" Association="Self.posts_roles_fk">
  321. <End Role="roles" EntitySet="roles" />
  322. <End Role="posts" EntitySet="posts" />
  323. </AssociationSet>
  324. <AssociationSet Name="postsmetrics_id_post_fkey" Association="Self.postsmetrics_id_post_fkey">
  325. <End Role="posts" EntitySet="posts" />
  326. <End Role="postsmetrics" EntitySet="postsmetrics" />
  327. </AssociationSet>
  328. <AssociationSet Name="users_id_post_fkey" Association="Self.users_id_post_fkey">
  329. <End Role="posts" EntitySet="posts" />
  330. <End Role="users" EntitySet="users" />
  331. </AssociationSet>
  332. <AssociationSet Name="usersmetrics_id_user_fkey" Association="Self.usersmetrics_id_user_fkey">
  333. <End Role="users" EntitySet="users" />
  334. <End Role="usersmetrics" EntitySet="usersmetrics" />
  335. </AssociationSet>
  336. </EntityContainer>
  337. </Schema>
  338. </edmx:ConceptualModels>
  339. <!-- C-S mapping content -->
  340. <edmx:Mappings>
  341. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  342. <EntityContainerMapping StorageEntityContainer="Хранилище ExamPm01ModelContainer" CdmEntityContainer="Entities">
  343. <EntitySetMapping Name="metrics">
  344. <EntityTypeMapping TypeName="ExamPm01Model.metrics">
  345. <MappingFragment StoreEntitySet="metrics">
  346. <ScalarProperty Name="id" ColumnName="id" />
  347. <ScalarProperty Name="metric" ColumnName="metric" />
  348. </MappingFragment>
  349. </EntityTypeMapping>
  350. </EntitySetMapping>
  351. <EntitySetMapping Name="posts">
  352. <EntityTypeMapping TypeName="ExamPm01Model.posts">
  353. <MappingFragment StoreEntitySet="posts">
  354. <ScalarProperty Name="id" ColumnName="id" />
  355. <ScalarProperty Name="title" ColumnName="title" />
  356. <ScalarProperty Name="id_role" ColumnName="id_role" />
  357. </MappingFragment>
  358. </EntityTypeMapping>
  359. </EntitySetMapping>
  360. <EntitySetMapping Name="postsmetrics">
  361. <EntityTypeMapping TypeName="ExamPm01Model.postsmetrics">
  362. <MappingFragment StoreEntitySet="postsmetrics">
  363. <ScalarProperty Name="id" ColumnName="id" />
  364. <ScalarProperty Name="id_metric" ColumnName="id_metric" />
  365. <ScalarProperty Name="id_post" ColumnName="id_post" />
  366. </MappingFragment>
  367. </EntityTypeMapping>
  368. </EntitySetMapping>
  369. <EntitySetMapping Name="roles">
  370. <EntityTypeMapping TypeName="ExamPm01Model.roles">
  371. <MappingFragment StoreEntitySet="roles">
  372. <ScalarProperty Name="id" ColumnName="id" />
  373. <ScalarProperty Name="role" ColumnName="role" />
  374. </MappingFragment>
  375. </EntityTypeMapping>
  376. </EntitySetMapping>
  377. <EntitySetMapping Name="users">
  378. <EntityTypeMapping TypeName="ExamPm01Model.users">
  379. <MappingFragment StoreEntitySet="users">
  380. <ScalarProperty Name="id" ColumnName="id" />
  381. <ScalarProperty Name="surname" ColumnName="surname" />
  382. <ScalarProperty Name="firstname" ColumnName="firstname" />
  383. <ScalarProperty Name="patronymic" ColumnName="patronymic" />
  384. <ScalarProperty Name="id_post" ColumnName="id_post" />
  385. <ScalarProperty Name="email" ColumnName="email" />
  386. <ScalarProperty Name="password" ColumnName="password" />
  387. </MappingFragment>
  388. </EntityTypeMapping>
  389. </EntitySetMapping>
  390. <EntitySetMapping Name="usersmetrics">
  391. <EntityTypeMapping TypeName="ExamPm01Model.usersmetrics">
  392. <MappingFragment StoreEntitySet="usersmetrics">
  393. <ScalarProperty Name="id" ColumnName="id" />
  394. <ScalarProperty Name="id_user" ColumnName="id_user" />
  395. <ScalarProperty Name="id_metric" ColumnName="id_metric" />
  396. <ScalarProperty Name="coefficient" ColumnName="coefficient" />
  397. <ScalarProperty Name="dateofachievement" ColumnName="dateofachievement" />
  398. </MappingFragment>
  399. </EntityTypeMapping>
  400. </EntitySetMapping>
  401. </EntityContainerMapping>
  402. </Mapping>
  403. </edmx:Mappings>
  404. </edmx:Runtime>
  405. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  406. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  407. <Connection>
  408. <DesignerInfoPropertySet>
  409. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  410. </DesignerInfoPropertySet>
  411. </Connection>
  412. <Options>
  413. <DesignerInfoPropertySet>
  414. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  415. <DesignerProperty Name="EnablePluralization" Value="false" />
  416. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  417. <DesignerProperty Name="UseLegacyProvider" Value="false" />
  418. <DesignerProperty Name="CodeGenerationStrategy" Value="Нет" />
  419. </DesignerInfoPropertySet>
  420. </Options>
  421. <!-- Diagram content (shape and connector positions) -->
  422. <Diagrams></Diagrams>
  423. </Designer>
  424. </edmx:Edmx>