You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SqlServerManager.edmx 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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="Model.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2012" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
  8. <EntityType Name="T_SqlManager">
  9. <Key>
  10. <PropertyRef Name="id" />
  11. </Key>
  12. <Property Name="id" Type="bigint" StoreGeneratedPattern="Identity" Nullable="false" />
  13. <Property Name="my_string" Type="varchar" MaxLength="50" Nullable="false" />
  14. <Property Name="my_int" Type="int" Nullable="false" />
  15. </EntityType>
  16. <EntityContainer Name="ModelStoreContainer">
  17. <EntitySet Name="T_SqlManager" EntityType="Self.T_SqlManager" Schema="dbo" store:Type="Tables" />
  18. </EntityContainer>
  19. </Schema></edmx:StorageModels>
  20. <!-- CSDL content -->
  21. <edmx:ConceptualModels>
  22. <Schema Namespace="Model" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
  23. <EntityContainer Name="SqlServerManagerEntities" annotation:LazyLoadingEnabled="true">
  24. <EntitySet Name="T_SqlManager" EntityType="Model.T_SqlManager" />
  25. </EntityContainer>
  26. <EntityType Name="T_SqlManager">
  27. <Key>
  28. <PropertyRef Name="id" />
  29. </Key>
  30. <Property Name="id" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  31. <Property Name="my_string" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="false" />
  32. <Property Name="my_int" Type="Int32" Nullable="false" />
  33. </EntityType>
  34. </Schema>
  35. </edmx:ConceptualModels>
  36. <!-- C-S mapping content -->
  37. <edmx:Mappings>
  38. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  39. <EntityContainerMapping StorageEntityContainer="ModelStoreContainer" CdmEntityContainer="SqlServerManagerEntities">
  40. <EntitySetMapping Name="T_SqlManager">
  41. <EntityTypeMapping TypeName="Model.T_SqlManager">
  42. <MappingFragment StoreEntitySet="T_SqlManager">
  43. <ScalarProperty Name="my_int" ColumnName="my_int" />
  44. <ScalarProperty Name="my_string" ColumnName="my_string" />
  45. <ScalarProperty Name="id" ColumnName="id" />
  46. </MappingFragment>
  47. </EntityTypeMapping>
  48. </EntitySetMapping>
  49. </EntityContainerMapping>
  50. </Mapping>
  51. </edmx:Mappings>
  52. </edmx:Runtime>
  53. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  54. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  55. <Connection>
  56. <DesignerInfoPropertySet>
  57. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  58. </DesignerInfoPropertySet>
  59. </Connection>
  60. <Options>
  61. <DesignerInfoPropertySet>
  62. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  63. <DesignerProperty Name="EnablePluralization" Value="false" />
  64. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  65. <DesignerProperty Name="UseLegacyProvider" Value="false" />
  66. <DesignerProperty Name="CodeGenerationStrategy" Value="None" />
  67. </DesignerInfoPropertySet>
  68. </Options>
  69. <!-- Diagram content (shape and connector positions) -->
  70. <Diagrams></Diagrams>
  71. </Designer>
  72. </edmx:Edmx>