-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMessages.edmx
More file actions
75 lines (75 loc) · 3.48 KB
/
Messages.edmx
File metadata and controls
75 lines (75 loc) · 3.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="2.0" xmlns:edmx="http://schemas.microsoft.com/ado/2008/10/edmx">
<!-- EF Runtime content -->
<edmx:Runtime>
<!-- SSDL content -->
<edmx:StorageModels>
<Schema Namespace="Messages.Store" Alias="Self" Provider="System.Data.SqlServerCe.3.5" ProviderManifestToken="3.5" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl">
<EntityContainer Name="MessagesStoreContainer">
<EntitySet Name="Messages" EntityType="Messages.Store.Messages" store:Type="Tables" Schema="dbo" />
</EntityContainer>
<EntityType Name="Messages">
<Key>
<PropertyRef Name="DateLeft" />
</Key>
<Property Name="DateLeft" Type="nvarchar" Nullable="false" />
<Property Name="IrcNick" Type="nvarchar" Nullable="false" />
<Property Name="MessageText" Type="nvarchar" Nullable="false" />
<Property Name="FromIrcNick" Type="nvarchar" Nullable="false" />
</EntityType>
</Schema></edmx:StorageModels>
<!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="Messages" Alias="Self" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
<EntityContainer Name="MessagesContainer">
<EntitySet Name="Messages" EntityType="Messages.Message" />
</EntityContainer>
<EntityType Name="Message">
<Key>
<PropertyRef Name="DateLeft" />
</Key>
<Property Type="String" Name="DateLeft" Nullable="false" />
<Property Type="String" Name="IrcNick" Nullable="false" />
<Property Type="String" Name="MessageText" Nullable="false" />
<Property Type="String" Name="FromIrcNick" Nullable="false" />
</EntityType>
</Schema>
</edmx:ConceptualModels>
<!-- C-S mapping content -->
<edmx:Mappings>
<Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2008/09/mapping/cs">
<EntityContainerMapping StorageEntityContainer="MessagesStoreContainer" CdmEntityContainer="MessagesContainer">
<EntitySetMapping Name="Messages">
<EntityTypeMapping TypeName="IsTypeOf(Messages.Message)">
<MappingFragment StoreEntitySet="Messages">
<ScalarProperty Name="DateLeft" ColumnName="DateLeft" />
<ScalarProperty Name="IrcNick" ColumnName="IrcNick" />
<ScalarProperty Name="MessageText" ColumnName="MessageText" />
<ScalarProperty Name="FromIrcNick" ColumnName="FromIrcNick" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
</EntityContainerMapping>
</Mapping></edmx:Mappings>
</edmx:Runtime>
<!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
<edmx:Designer>
<edmx:Connection>
<edmx:DesignerInfoPropertySet>
<edmx:DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
</edmx:DesignerInfoPropertySet>
</edmx:Connection>
<edmx:Options>
<edmx:DesignerInfoPropertySet>
<edmx:DesignerProperty Name="ValidateOnBuild" Value="true" />
<edmx:DesignerProperty Name="EnablePluralization" Value="True" />
</edmx:DesignerInfoPropertySet>
</edmx:Options>
<!-- Diagram content (shape and connector positions) -->
<edmx:Diagrams>
<edmx:Diagram Name="Messages" >
<edmx:EntityTypeShape EntityType="Messages.Message" Width="1.5" PointX="5.5" PointY="2.375" Height="1.7879850260416665" />
</edmx:Diagram>
</edmx:Diagrams>
</edmx:Designer>
</edmx:Edmx>