| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?xml version="1.0" encoding="utf-8"?>
- <edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
- <!-- EF Runtime content -->
- <edmx:Runtime>
- <!-- SSDL content -->
- <edmx:StorageModels>
-
- <!-- Un seul provider doit être actif, il faut dé-commenter le bon -->
- <!-- Provider Oracle -->
- <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">
- <!-- Provider SQL server -->
- <!--<Schema Namespace="Model.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2008" 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">-->
- <EntityType Name="EXEMPLE_TYPE_VIKING">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="number" Precision="38" Scale="0" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="TYPE" Type="varchar2" MaxLength="255" />
- </EntityType>
- <EntityType Name="EXEMPLE_VIKINGS">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="number" Precision="38" Scale="0" Nullable="false" StoreGeneratedPattern="Identity" />
- <Property Name="NOM" Type="varchar2" MaxLength="255" Nullable="false" />
- <Property Name="ID_TYPE" Type="number" Precision="38" Scale="0" Nullable="false" />
- <Property Name="DESCRIPTION" Type="varchar2" MaxLength="255" />
- <Property Name="DATE_INUTILE" Type="date" />
- </EntityType>
- <Association Name="EXEMPLE_VIKINGS_FK">
- <End Role="EXEMPLE_TYPE_VIKING" Type="Self.EXEMPLE_TYPE_VIKING" Multiplicity="1" />
- <End Role="EXEMPLE_VIKINGS" Type="Self.EXEMPLE_VIKINGS" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="EXEMPLE_TYPE_VIKING">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="EXEMPLE_VIKINGS">
- <PropertyRef Name="ID_TYPE" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <EntityContainer Name="ModelStoreContainer">
- <EntitySet Name="EXEMPLE_TYPE_VIKING" EntityType="Self.EXEMPLE_TYPE_VIKING" Schema="FER" store:Type="Tables" />
- <EntitySet Name="EXEMPLE_VIKINGS" EntityType="Self.EXEMPLE_VIKINGS" Schema="FER" store:Type="Tables" />
- <AssociationSet Name="EXEMPLE_VIKINGS_FK" Association="Self.EXEMPLE_VIKINGS_FK">
- <End Role="EXEMPLE_TYPE_VIKING" EntitySet="EXEMPLE_TYPE_VIKING" />
- <End Role="EXEMPLE_VIKINGS" EntitySet="EXEMPLE_VIKINGS" />
- </AssociationSet>
- </EntityContainer>
- </Schema></edmx:StorageModels>
- <!-- CSDL content -->
- <edmx:ConceptualModels>
- <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">
- <EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="EXEMPLE_TYPE_VIKING" EntityType="Model.EXEMPLE_TYPE_VIKING" />
- <EntitySet Name="EXEMPLE_VIKINGS" EntityType="Model.EXEMPLE_VIKINGS" />
- <AssociationSet Name="EXEMPLE_VIKINGS_FK" Association="Model.EXEMPLE_VIKINGS_FK">
- <End Role="EXEMPLE_TYPE_VIKING" EntitySet="EXEMPLE_TYPE_VIKING" />
- <End Role="EXEMPLE_VIKINGS" EntitySet="EXEMPLE_VIKINGS" />
- </AssociationSet>
- </EntityContainer>
- <EntityType Name="EXEMPLE_TYPE_VIKING">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="TYPE" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
- <NavigationProperty Name="EXEMPLE_VIKINGS" Relationship="Model.EXEMPLE_VIKINGS_FK" FromRole="EXEMPLE_TYPE_VIKING" ToRole="EXEMPLE_VIKINGS" />
- </EntityType>
- <EntityType Name="EXEMPLE_VIKINGS">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="NOM" Type="String" Nullable="false" MaxLength="255" FixedLength="false" Unicode="false" />
- <Property Name="ID_TYPE" Type="Int32" Nullable="false" />
- <Property Name="DESCRIPTION" Type="String" MaxLength="255" FixedLength="false" Unicode="false" />
- <NavigationProperty Name="EXEMPLE_TYPE_VIKING" Relationship="Model.EXEMPLE_VIKINGS_FK" FromRole="EXEMPLE_VIKINGS" ToRole="EXEMPLE_TYPE_VIKING" />
- <Property Name="DATE_INUTILE" Type="DateTime" />
- </EntityType>
- <Association Name="EXEMPLE_VIKINGS_FK">
- <End Type="Model.EXEMPLE_TYPE_VIKING" Role="EXEMPLE_TYPE_VIKING" Multiplicity="1" />
- <End Type="Model.EXEMPLE_VIKINGS" Role="EXEMPLE_VIKINGS" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="EXEMPLE_TYPE_VIKING">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="EXEMPLE_VIKINGS">
- <PropertyRef Name="ID_TYPE" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- </Schema>
- </edmx:ConceptualModels>
- <!-- C-S mapping content -->
- <edmx:Mappings>
- <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
- <EntityContainerMapping StorageEntityContainer="ModelStoreContainer" CdmEntityContainer="Entities">
- <EntitySetMapping Name="EXEMPLE_TYPE_VIKING">
- <EntityTypeMapping TypeName="Model.EXEMPLE_TYPE_VIKING">
- <MappingFragment StoreEntitySet="EXEMPLE_TYPE_VIKING">
- <ScalarProperty Name="TYPE" ColumnName="TYPE" />
- <ScalarProperty Name="ID" ColumnName="ID" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="EXEMPLE_VIKINGS">
- <EntityTypeMapping TypeName="Model.EXEMPLE_VIKINGS">
- <MappingFragment StoreEntitySet="EXEMPLE_VIKINGS">
- <ScalarProperty Name="DATE_INUTILE" ColumnName="DATE_INUTILE" />
- <ScalarProperty Name="DESCRIPTION" ColumnName="DESCRIPTION" />
- <ScalarProperty Name="ID_TYPE" ColumnName="ID_TYPE" />
- <ScalarProperty Name="NOM" ColumnName="NOM" />
- <ScalarProperty Name="ID" ColumnName="ID" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- </EntityContainerMapping>
- </Mapping>
- </edmx:Mappings>
- </edmx:Runtime>
- <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
- <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
- <Connection>
- <DesignerInfoPropertySet>
- <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
- </DesignerInfoPropertySet>
- </Connection>
- <Options>
- <DesignerInfoPropertySet>
- <DesignerProperty Name="ValidateOnBuild" Value="true" />
- <DesignerProperty Name="EnablePluralization" Value="false" />
- <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
- <DesignerProperty Name="UseLegacyProvider" Value="false" />
- <DesignerProperty Name="CodeGenerationStrategy" Value="Aucun" />
- </DesignerInfoPropertySet>
- </Options>
- <!-- Diagram content (shape and connector positions) -->
- <Diagrams></Diagrams>
- </Designer>
- </edmx:Edmx>
|