Advertisement
davidb37

Untitled

Aug 7th, 2014
508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.00 KB | None | 0 0
  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="CaseddimensionsCmsModels.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2008" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
  8. <EntityContainer Name="CaseddimensionsCmsModelsStoreContainer">
  9. <EntitySet Name="FormBuilder_field_values" EntityType="CaseddimensionsCmsModels.Store.FormBuilder_field_values" store:Type="Tables" Schema="dbo" />
  10. <EntitySet Name="FormBuilder_Form" EntityType="CaseddimensionsCmsModels.Store.FormBuilder_Form" store:Type="Tables" Schema="dbo" />
  11. <EntitySet Name="FormBuilder_Form_Fields" EntityType="CaseddimensionsCmsModels.Store.FormBuilder_Form_Fields" store:Type="Tables" Schema="dbo" />
  12. </EntityContainer>
  13. <EntityType Name="FormBuilder_field_values">
  14. <Key>
  15. <PropertyRef Name="ID" />
  16. </Key>
  17. <Property Name="ID" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
  18. <Property Name="FieldId" Type="int" Nullable="false" />
  19. <Property Name="EntryId" Type="uniqueidentifier" Nullable="false" />
  20. <Property Name="Value" Type="nvarchar" MaxLength="500" />
  21. <Property Name="DateAdded" Type="datetime" Nullable="false" />
  22. </EntityType>
  23. <EntityType Name="FormBuilder_Form">
  24. <Key>
  25. <PropertyRef Name="ID" />
  26. </Key>
  27. <Property Name="ID" Type="int" Nullable="false" />
  28. <Property Name="Name" Type="nvarchar" MaxLength="255" />
  29. <Property Name="FriendlyUrl" Type="nvarchar" MaxLength="255" />
  30. <Property Name="Status" Type="int" />
  31. <Property Name="Message" Type="nvarchar(max)" />
  32. <Property Name="CreatedDate" Type="datetime" />
  33. <Property Name="author" Type="nvarchar" MaxLength="50" />
  34. <Property Name="version" Type="int" />
  35. <Property Name="revison" Type="int" />
  36. <Property Name="active" Type="int" />
  37. <Property Name="site" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
  38. </EntityType>
  39. <EntityType Name="FormBuilder_Form_Fields">
  40. <Key>
  41. <PropertyRef Name="ID" />
  42. </Key>
  43. <Property Name="ID" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
  44. <Property Name="Caption" Type="nvarchar" MaxLength="50" />
  45. <Property Name="Text" Type="nvarchar" MaxLength="150" />
  46. <Property Name="Type" Type="nvarchar" MaxLength="150" />
  47. <Property Name="IsRequired" Type="bit" />
  48. <Property Name="MaxLength" Type="int" />
  49. <Property Name="ToolTipText" Type="nvarchar" MaxLength="150" />
  50. <Property Name="ToolTip" Type="nvarchar" MaxLength="150" />
  51. <Property Name="SecondLabel" Type="nvarchar" MaxLength="250" />
  52. <Property Name="Size" Type="varchar" MaxLength="50" />
  53. <Property Name="FieldOption" Type="nvarchar" MaxLength="50" />
  54. <Property Name="Columns" Type="int" />
  55. <Property Name="Rows" Type="int" />
  56. <Property Name="Options" Type="nvarchar" MaxLength="300" />
  57. <Property Name="Validation" Type="varchar" MaxLength="50" />
  58. <Property Name="DomID" Type="int" />
  59. <Property Name="Order" Type="int" />
  60. <Property Name="HelpText" Type="nvarchar" MaxLength="50" />
  61. <Property Name="DateAdded" Type="datetime" />
  62. <Property Name="ValidFileExtensions" Type="nvarchar" MaxLength="50" />
  63. <Property Name="FieldType" Type="nvarchar" MaxLength="50" />
  64. </EntityType>
  65. </Schema></edmx:StorageModels>
  66. <!-- CSDL content -->
  67. <edmx:ConceptualModels>
  68. <Schema Namespace="CaseddimensionsCmsModels" Alias="Self" p1:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:p1="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
  69. <EntityContainer Name="CaseddimensionsCmsEntities" p1:LazyLoadingEnabled="true">
  70. <EntitySet Name="Forms" EntityType="CaseddimensionsCmsModels.Form" />
  71. <EntitySet Name="FormFields" EntityType="CaseddimensionsCmsModels.FormFields" />
  72. <AssociationSet Name="FormFieldsForm" Association="CaseddimensionsCmsModels.FormFieldsForm">
  73. <End Role="FormFields" EntitySet="FormFields" />
  74. <End Role="Form" EntitySet="Forms" />
  75. </AssociationSet>
  76. <EntitySet Name="FieldValues" EntityType="CaseddimensionsCmsModels.FieldValues" />
  77. <AssociationSet Name="FormFieldsFieldValues" Association="CaseddimensionsCmsModels.FormFieldsFieldValues">
  78. <End Role="FormFields" EntitySet="FormFields" />
  79. <End Role="FieldValues" EntitySet="FieldValues" />
  80. </AssociationSet>
  81. </EntityContainer>
  82. <EntityType Name="Form">
  83. <Key>
  84. <PropertyRef Name="ID" />
  85. </Key>
  86. <Property Type="Int32" Name="ID" Nullable="false" />
  87. <Property Type="String" Name="Name" MaxLength="255" FixedLength="false" Unicode="true" />
  88. <Property Type="String" Name="FriendlyUrl" MaxLength="255" FixedLength="false" Unicode="true" />
  89. <Property Type="Int32" Name="Status" />
  90. <Property Type="String" Name="Message" MaxLength="Max" FixedLength="false" Unicode="true" />
  91. <Property Type="DateTime" Name="CreatedDate" Precision="3" />
  92. <Property Type="String" Name="author" MaxLength="50" FixedLength="false" Unicode="true" />
  93. <Property Type="Int32" Name="version" />
  94. <Property Type="Int32" Name="revison" />
  95. <Property Type="Int32" Name="active" />
  96. <Property Type="Int32" Name="site" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  97. <NavigationProperty Name="FormField" Relationship="CaseddimensionsCmsModels.FormFieldsForm" FromRole="Form" ToRole="FormFields" />
  98. </EntityType>
  99. <EntityType Name="FormFields">
  100. <Key>
  101. <PropertyRef Name="ID" />
  102. </Key>
  103. <Property Type="Int32" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  104. <Property Type="String" Name="Caption" MaxLength="50" FixedLength="false" Unicode="true" />
  105. <Property Type="String" Name="Text" MaxLength="150" FixedLength="false" Unicode="true" />
  106. <Property Type="String" Name="Type" MaxLength="150" FixedLength="false" Unicode="true" />
  107. <Property Type="Boolean" Name="IsRequired" />
  108. <Property Type="Int32" Name="MaxLength" />
  109. <Property Type="String" Name="ToolTipText" MaxLength="150" FixedLength="false" Unicode="true" />
  110. <Property Type="String" Name="ToolTip" MaxLength="150" FixedLength="false" Unicode="true" />
  111. <Property Type="String" Name="SecondLabel" MaxLength="250" FixedLength="false" Unicode="true" />
  112. <Property Type="String" Name="Size" MaxLength="50" FixedLength="false" Unicode="false" />
  113. <Property Type="String" Name="FieldOption" MaxLength="50" FixedLength="false" Unicode="true" />
  114. <Property Type="Int32" Name="Columns" />
  115. <Property Type="Int32" Name="Rows" />
  116. <Property Type="String" Name="Options" MaxLength="300" FixedLength="false" Unicode="true" />
  117. <Property Type="String" Name="Validation" MaxLength="50" FixedLength="false" Unicode="false" />
  118. <Property Type="Int32" Name="DomID" />
  119. <Property Type="Int32" Name="Order" />
  120. <Property Type="String" Name="HelpText" MaxLength="50" FixedLength="false" Unicode="true" />
  121. <Property Type="DateTime" Name="DateAdded" Precision="3" />
  122. <Property Type="String" Name="ValidFileExtensions" MaxLength="50" FixedLength="false" Unicode="true" />
  123. <Property Type="String" Name="FieldType" MaxLength="50" FixedLength="false" Unicode="true" />
  124. <NavigationProperty Name="Forms" Relationship="CaseddimensionsCmsModels.FormFieldsForm" FromRole="FormFields" ToRole="Form" />
  125. </EntityType>
  126. <Association Name="FormFieldsForm">
  127. <End Type="CaseddimensionsCmsModels.FormFields" Role="FormFields" Multiplicity="*" />
  128. <End Type="CaseddimensionsCmsModels.Form" Role="Form" Multiplicity="*" />
  129. </Association>
  130. <EntityType Name="FieldValues">
  131. <Key>
  132. <PropertyRef Name="ID" />
  133. </Key>
  134. <Property Type="Int32" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  135. <Property Type="Int32" Name="FieldId" Nullable="false" />
  136. <Property Type="Guid" Name="EntryId" Nullable="false" />
  137. <Property Type="String" Name="Value" MaxLength="500" FixedLength="false" Unicode="true" />
  138. <Property Type="DateTime" Name="DateAdded" Nullable="false" Precision="3" />
  139. <NavigationProperty Name="FormField" Relationship="CaseddimensionsCmsModels.FormFieldsFieldValues" FromRole="FieldValues" ToRole="FormFields" />
  140. </EntityType>
  141. <Association Name="FormFieldsFieldValues">
  142. <End Type="CaseddimensionsCmsModels.FormFields" Role="FormFields" Multiplicity="1" />
  143. <End Type="CaseddimensionsCmsModels.FieldValues" Role="FieldValues" Multiplicity="*" />
  144. <ReferentialConstraint>
  145. <Principal Role="FormFields">
  146. <PropertyRef Name="ID" />
  147. </Principal>
  148. <Dependent Role="FieldValues">
  149. <PropertyRef Name="FieldId" />
  150. </Dependent>
  151. </ReferentialConstraint>
  152. </Association>
  153. </Schema>
  154. </edmx:ConceptualModels>
  155. <!-- C-S mapping content -->
  156. <edmx:Mappings>
  157. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  158. <EntityContainerMapping StorageEntityContainer="CaseddimensionsCmsModelsStoreContainer" CdmEntityContainer="CaseddimensionsCmsEntities">
  159. <EntitySetMapping Name="Forms">
  160. <EntityTypeMapping TypeName="CaseddimensionsCmsModels.Form">
  161. <MappingFragment StoreEntitySet="FormBuilder_Form">
  162. <ScalarProperty Name="site" ColumnName="site" />
  163. <ScalarProperty Name="active" ColumnName="active" />
  164. <ScalarProperty Name="revison" ColumnName="revison" />
  165. <ScalarProperty Name="version" ColumnName="version" />
  166. <ScalarProperty Name="author" ColumnName="author" />
  167. <ScalarProperty Name="CreatedDate" ColumnName="CreatedDate" />
  168. <ScalarProperty Name="Message" ColumnName="Message" />
  169. <ScalarProperty Name="Status" ColumnName="Status" />
  170. <ScalarProperty Name="FriendlyUrl" ColumnName="FriendlyUrl" />
  171. <ScalarProperty Name="Name" ColumnName="Name" />
  172. <ScalarProperty Name="ID" ColumnName="ID" />
  173. </MappingFragment>
  174. </EntityTypeMapping>
  175. </EntitySetMapping>
  176. <EntitySetMapping Name="FormFields">
  177. <EntityTypeMapping TypeName="CaseddimensionsCmsModels.FormFields">
  178. <MappingFragment StoreEntitySet="FormBuilder_Form_Fields">
  179. <ScalarProperty Name="FieldType" ColumnName="FieldType" />
  180. <ScalarProperty Name="ValidFileExtensions" ColumnName="ValidFileExtensions" />
  181. <ScalarProperty Name="DateAdded" ColumnName="DateAdded" />
  182. <ScalarProperty Name="HelpText" ColumnName="HelpText" />
  183. <ScalarProperty Name="Order" ColumnName="Order" />
  184. <ScalarProperty Name="DomID" ColumnName="DomID" />
  185. <ScalarProperty Name="Validation" ColumnName="Validation" />
  186. <ScalarProperty Name="Options" ColumnName="Options" />
  187. <ScalarProperty Name="Rows" ColumnName="Rows" />
  188. <ScalarProperty Name="Columns" ColumnName="Columns" />
  189. <ScalarProperty Name="FieldOption" ColumnName="FieldOption" />
  190. <ScalarProperty Name="Size" ColumnName="Size" />
  191. <ScalarProperty Name="SecondLabel" ColumnName="SecondLabel" />
  192. <ScalarProperty Name="ToolTip" ColumnName="ToolTip" />
  193. <ScalarProperty Name="ToolTipText" ColumnName="ToolTipText" />
  194. <ScalarProperty Name="MaxLength" ColumnName="MaxLength" />
  195. <ScalarProperty Name="IsRequired" ColumnName="IsRequired" />
  196. <ScalarProperty Name="Type" ColumnName="Type" />
  197. <ScalarProperty Name="Text" ColumnName="Text" />
  198. <ScalarProperty Name="Caption" ColumnName="Caption" />
  199. <ScalarProperty Name="ID" ColumnName="ID" />
  200. </MappingFragment>
  201. </EntityTypeMapping>
  202. </EntitySetMapping>
  203. <EntitySetMapping Name="FieldValues">
  204. <EntityTypeMapping TypeName="CaseddimensionsCmsModels.FieldValues">
  205. <MappingFragment StoreEntitySet="FormBuilder_field_values">
  206. <ScalarProperty Name="DateAdded" ColumnName="DateAdded" />
  207. <ScalarProperty Name="Value" ColumnName="Value" />
  208. <ScalarProperty Name="EntryId" ColumnName="EntryId" />
  209. <ScalarProperty Name="FieldId" ColumnName="FieldId" />
  210. <ScalarProperty Name="ID" ColumnName="ID" />
  211. </MappingFragment>
  212. </EntityTypeMapping>
  213. </EntitySetMapping>
  214. <AssociationSetMapping Name="FormFieldsForm" TypeName="CaseddimensionsCmsModels.FormFieldsForm" StoreEntitySet="FormBuilder_Form_Fields">
  215. <EndProperty Name="Form">
  216. <ScalarProperty Name="ID" ColumnName="ID" />
  217. </EndProperty>
  218. <EndProperty Name="FormFields">
  219. <ScalarProperty Name="ID" ColumnName="ID" />
  220. </EndProperty>
  221. </AssociationSetMapping>
  222. </EntityContainerMapping>
  223. </Mapping>
  224. </edmx:Mappings>
  225. </edmx:Runtime>
  226. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  227. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  228. <Connection>
  229. <DesignerInfoPropertySet>
  230. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  231. </DesignerInfoPropertySet>
  232. </Connection>
  233. <Options>
  234. <DesignerInfoPropertySet>
  235. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  236. <DesignerProperty Name="EnablePluralization" Value="True" />
  237. <DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
  238. <DesignerProperty Name="CodeGenerationStrategy" Value="Default" />
  239. </DesignerInfoPropertySet>
  240. </Options>
  241. <!-- Diagram content (shape and connector positions) -->
  242. <Diagrams></Diagrams>
  243. </Designer>
  244. </edmx:Edmx>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement