Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Services.Hello/3.3/HelloModel.edmx @ 6878

Last change on this file since 6878 was 6794, checked in by abeham, 13 years ago

#1619

  • Updated Hello (test) service, tested db publishing
File size: 3.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<edmx:Edmx Version="2.0" xmlns:edmx="http://schemas.microsoft.com/ado/2008/10/edmx">
3  <!-- EF Runtime content -->
4  <edmx:Runtime>
5    <!-- SSDL content -->
6    <edmx:StorageModels>
7      <Schema Namespace="HelloDatabaseModel.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2008" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl">
8        <EntityContainer Name="HelloDatabaseModelStoreContainer">
9          <EntitySet Name="Saying" EntityType="HelloDatabaseModel.Store.Saying" store:Type="Tables" Schema="dbo" />
10        </EntityContainer>
11        <EntityType Name="Saying">
12          <Key>
13            <PropertyRef Name="id" />
14          </Key>
15          <Property Name="id" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
16          <Property Name="message" Type="nvarchar" Nullable="false" MaxLength="256" />
17          <Property Name="date" Type="datetime" Nullable="false" />
18        </EntityType>
19      </Schema>
20    </edmx:StorageModels>
21    <!-- CSDL content -->
22    <edmx:ConceptualModels>
23      <Schema Namespace="HelloDatabaseModel" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
24        <EntityContainer Name="HelloEntities" annotation:LazyLoadingEnabled="true">
25          <EntitySet Name="Sayings" EntityType="HelloDatabaseModel.Saying" />
26        </EntityContainer>
27        <EntityType Name="Saying">
28          <Key>
29            <PropertyRef Name="id" />
30          </Key>
31          <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
32          <Property Name="message" Type="String" Nullable="false" MaxLength="256" Unicode="true" FixedLength="false" />
33          <Property Name="date" Type="DateTime" Nullable="false" />
34        </EntityType>
35      </Schema>
36    </edmx:ConceptualModels>
37    <!-- C-S mapping content -->
38    <edmx:Mappings>
39      <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2008/09/mapping/cs">
40        <EntityContainerMapping StorageEntityContainer="HelloDatabaseModelStoreContainer" CdmEntityContainer="HelloEntities">
41          <EntitySetMapping Name="Sayings"><EntityTypeMapping TypeName="HelloDatabaseModel.Saying"><MappingFragment StoreEntitySet="Saying">
42            <ScalarProperty Name="id" ColumnName="id" />
43            <ScalarProperty Name="message" ColumnName="message" />
44            <ScalarProperty Name="date" ColumnName="date" />
45          </MappingFragment></EntityTypeMapping></EntitySetMapping>
46        </EntityContainerMapping>
47      </Mapping>
48    </edmx:Mappings>
49  </edmx:Runtime>
50  <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
51  <Designer xmlns="http://schemas.microsoft.com/ado/2008/10/edmx">
52    <Connection>
53      <DesignerInfoPropertySet>
54        <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
55      </DesignerInfoPropertySet>
56    </Connection>
57    <Options>
58      <DesignerInfoPropertySet>
59        <DesignerProperty Name="ValidateOnBuild" Value="true" />
60        <DesignerProperty Name="EnablePluralization" Value="False" />
61        <DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
62      </DesignerInfoPropertySet>
63    </Options>
64    <!-- Diagram content (shape and connector positions) -->
65    <Diagrams>
66      <Diagram Name="HelloModel">
67        <EntityTypeShape EntityType="HelloDatabaseModel.Saying" Width="1.5" PointX="0.75" PointY="0.75" Height="1.59568359375" IsExpanded="true" />
68      </Diagram>
69    </Diagrams>
70  </Designer>
71</edmx:Edmx>
Note: See TracBrowser for help on using the repository browser.