EDM.edmx 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl" Namespace="EDM.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2005">
  8. <EntityContainer Name="EDMTargetContainer" >
  9. </EntityContainer>
  10. </Schema>
  11. </edmx:StorageModels>
  12. <!-- CSDL content -->
  13. <edmx:ConceptualModels>
  14. <Schema xmlns="http://schemas.microsoft.com/ado/2009/11/edm" xmlns:cg="http://schemas.microsoft.com/ado/2006/04/codegeneration" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" Namespace="EDM" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" annotation:UseStrongSpatialTypes="false">
  15. <EntityContainer Name="EDMContainer" annotation:LazyLoadingEnabled="true">
  16. </EntityContainer>
  17. </Schema>
  18. </edmx:ConceptualModels>
  19. <!-- C-S mapping content -->
  20. <edmx:Mappings>
  21. <Mapping xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs" Space="C-S">
  22. <Alias Key="Model" Value="EDM" />
  23. <Alias Key="Target" Value="EDM.Store" />
  24. <EntityContainerMapping CdmEntityContainer="EDMContainer" StorageEntityContainer="EDMTargetContainer">
  25. </EntityContainerMapping>
  26. </Mapping>
  27. </edmx:Mappings>
  28. </edmx:Runtime>
  29. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  30. <edmx:Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  31. <edmx:Connection>
  32. <DesignerInfoPropertySet>
  33. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  34. </DesignerInfoPropertySet>
  35. </edmx:Connection>
  36. <edmx:Options>
  37. <DesignerInfoPropertySet>
  38. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  39. <DesignerProperty Name="EnablePluralization" Value="False" />
  40. <DesignerProperty Name="CodeGenerationStrategy" Value="Нет" />
  41. </DesignerInfoPropertySet>
  42. </edmx:Options>
  43. <!-- Diagram content (shape and connector positions) -->
  44. <edmx:Diagrams>
  45. </edmx:Diagrams>
  46. </edmx:Designer>
  47. </edmx:Edmx>