Files
GPW/HOME/Models/GPWModel.edmx
2017-04-04 15:36:01 +02:00

93 lines
5.3 KiB
XML

<?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>
<Schema Namespace="GPWModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2012" 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="AnagKeyValue">
<Key>
<PropertyRef Name="nomeVar" />
</Key>
<Property Name="nomeVar" Type="nvarchar" MaxLength="50" Nullable="false" />
<Property Name="valInt" Type="int" />
<Property Name="valFloat" Type="float" />
<Property Name="valString" Type="nvarchar" MaxLength="250" />
<Property Name="descrizione" Type="nvarchar" MaxLength="250" />
</EntityType>
<Function Name="stp_AKV_getByKey" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
<Parameter Name="nomeVar" Type="nvarchar" Mode="In" />
</Function>
<EntityContainer Name="GPWModelStoreContainer">
<EntitySet Name="AnagKeyValue" EntityType="Self.AnagKeyValue" Schema="dbo" store:Type="Tables" />
</EntityContainer>
</Schema></edmx:StorageModels>
<!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="GPWModel" 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">
<EntityType Name="AnagKeyValue">
<Key>
<PropertyRef Name="nomeVar" />
</Key>
<Property Name="nomeVar" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
<Property Name="valInt" Type="Int32" />
<Property Name="valFloat" Type="Double" />
<Property Name="valString" Type="String" MaxLength="250" FixedLength="false" Unicode="true" />
<Property Name="descrizione" Type="String" MaxLength="250" FixedLength="false" Unicode="true" />
</EntityType>
<EntityContainer Name="GPWEntities" annotation:LazyLoadingEnabled="true">
<EntitySet Name="AnagKeyValue" EntityType="Self.AnagKeyValue" />
<FunctionImport Name="stp_AKV_getByKey" EntitySet="AnagKeyValue" ReturnType="Collection(GPWModel.AnagKeyValue)">
<Parameter Name="nomeVar" Mode="In" Type="String" />
</FunctionImport>
</EntityContainer>
<ComplexType Name="stp_AKV_getByKey_Result">
<Property Type="String" Name="nomeVar" Nullable="false" MaxLength="50" />
<Property Type="Int32" Name="valInt" Nullable="false" />
<Property Type="Double" Name="valFloat" Nullable="false" />
<Property Type="String" Name="valString" Nullable="false" MaxLength="250" />
<Property Type="String" Name="descrizione" Nullable="false" MaxLength="250" />
</ComplexType>
</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="GPWModelStoreContainer" CdmEntityContainer="GPWEntities">
<EntitySetMapping Name="AnagKeyValue">
<EntityTypeMapping TypeName="GPWModel.AnagKeyValue">
<MappingFragment StoreEntitySet="AnagKeyValue">
<ScalarProperty Name="nomeVar" ColumnName="nomeVar" />
<ScalarProperty Name="valInt" ColumnName="valInt" />
<ScalarProperty Name="valFloat" ColumnName="valFloat" />
<ScalarProperty Name="valString" ColumnName="valString" />
<ScalarProperty Name="descrizione" ColumnName="descrizione" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<FunctionImportMapping FunctionImportName="stp_AKV_getByKey" FunctionName="GPWModel.Store.stp_AKV_getByKey">
</FunctionImportMapping>
</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="Nessuno" />
</DesignerInfoPropertySet>
</Options>
<!-- Diagram content (shape and connector positions) -->
<Diagrams></Diagrams>
</Designer>
</edmx:Edmx>