EntityModel.edmx 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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="Oracle.ManagedDataAccess.Client" ProviderManifestToken="11.2" 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="ANNEE">
  9. <Key>
  10. <PropertyRef Name="ANN_IDE" />
  11. </Key>
  12. <Property Name="ANN_IDE" Type="number" Precision="38" Scale="0" Nullable="false" />
  13. <Property Name="ANN_LIB" Type="varchar2" MaxLength="9" Nullable="false" />
  14. <Property Name="ANN_PREC" Type="number" Precision="38" Scale="0" />
  15. </EntityType>
  16. <EntityType Name="PARAM">
  17. <Key>
  18. <PropertyRef Name="PRM_CLE" />
  19. </Key>
  20. <Property Name="PRM_CLE" Type="varchar2" MaxLength="10" Nullable="false" />
  21. <Property Name="PRM_LIB1" Type="varchar2" MaxLength="100" />
  22. <Property Name="PRM_LIB2" Type="varchar2" MaxLength="100" />
  23. </EntityType>
  24. <EntityContainer Name="ModelStoreContainer">
  25. <EntitySet Name="ANNEE" EntityType="Self.ANNEE" Schema="FER" store:Type="Tables" />
  26. <EntitySet Name="PARAM" EntityType="Self.PARAM" Schema="FER" store:Type="Tables" />
  27. </EntityContainer>
  28. </Schema></edmx:StorageModels>
  29. <!-- CSDL content -->
  30. <edmx:ConceptualModels>
  31. <Schema Namespace="Model" 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">
  32. <EntityType Name="PARAM">
  33. <Key>
  34. <PropertyRef Name="PRM_CLE" />
  35. </Key>
  36. <Property Name="PRM_CLE" Type="String" MaxLength="10" FixedLength="false" Unicode="false" Nullable="false" />
  37. <Property Name="PRM_LIB1" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  38. <Property Name="PRM_LIB2" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
  39. </EntityType>
  40. <EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
  41. <EntitySet Name="PARAM" EntityType="Self.PARAM" />
  42. <EntitySet Name="ANNEE" EntityType="Model.ANNEE" />
  43. </EntityContainer>
  44. <EntityType Name="ANNEE">
  45. <Key>
  46. <PropertyRef Name="ANN_IDE" />
  47. </Key>
  48. <Property Name="ANN_IDE" Type="Decimal" Nullable="false" Precision="38" Scale="0" />
  49. <Property Name="ANN_LIB" Type="String" Nullable="false" MaxLength="9" FixedLength="false" Unicode="false" />
  50. <Property Name="ANN_PREC" Type="Decimal" Precision="38" Scale="0" />
  51. </EntityType>
  52. </Schema>
  53. </edmx:ConceptualModels>
  54. <!-- C-S mapping content -->
  55. <edmx:Mappings>
  56. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  57. <EntityContainerMapping StorageEntityContainer="ModelStoreContainer" CdmEntityContainer="Entities">
  58. <EntitySetMapping Name="PARAM">
  59. <EntityTypeMapping TypeName="Model.PARAM">
  60. <MappingFragment StoreEntitySet="PARAM">
  61. <ScalarProperty Name="PRM_CLE" ColumnName="PRM_CLE" />
  62. <ScalarProperty Name="PRM_LIB1" ColumnName="PRM_LIB1" />
  63. <ScalarProperty Name="PRM_LIB2" ColumnName="PRM_LIB2" />
  64. </MappingFragment>
  65. </EntityTypeMapping>
  66. </EntitySetMapping>
  67. <EntitySetMapping Name="ANNEE">
  68. <EntityTypeMapping TypeName="Model.ANNEE">
  69. <MappingFragment StoreEntitySet="ANNEE">
  70. <ScalarProperty Name="ANN_PREC" ColumnName="ANN_PREC" />
  71. <ScalarProperty Name="ANN_LIB" ColumnName="ANN_LIB" />
  72. <ScalarProperty Name="ANN_IDE" ColumnName="ANN_IDE" />
  73. </MappingFragment>
  74. </EntityTypeMapping>
  75. </EntitySetMapping>
  76. </EntityContainerMapping>
  77. </Mapping>
  78. </edmx:Mappings>
  79. </edmx:Runtime>
  80. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  81. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  82. <Connection>
  83. <DesignerInfoPropertySet>
  84. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  85. </DesignerInfoPropertySet>
  86. </Connection>
  87. <Options>
  88. <DesignerInfoPropertySet>
  89. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  90. <DesignerProperty Name="EnablePluralization" Value="false" />
  91. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  92. <DesignerProperty Name="UseLegacyProvider" Value="false" />
  93. <DesignerProperty Name="CodeGenerationStrategy" Value="Aucun" />
  94. </DesignerInfoPropertySet>
  95. </Options>
  96. <!-- Diagram content (shape and connector positions) -->
  97. <Diagrams></Diagrams>
  98. </Designer>
  99. </edmx:Edmx>