-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHelpCommands.edmx
70 lines (70 loc) · 3.41 KB
/
HelpCommands.edmx
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
<?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="HelpCommandsModel.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="HelpCommandsModelStoreContainer">
<EntitySet Name="HelpCommands" EntityType="HelpCommandsModel.Store.HelpCommands" store:Type="Tables" Schema="dbo" />
</EntityContainer>
<EntityType Name="HelpCommands">
<Key>
<PropertyRef Name="HelpName" />
</Key>
<Property Name="HelpName" Type="nvarchar" Nullable="false" />
<Property Name="HelpText" Type="nvarchar" Nullable="false" />
</EntityType>
</Schema></edmx:StorageModels>
<!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="HelpCommandsModel" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
<EntityContainer Name="HelpCommandsEntities" annotation:LazyLoadingEnabled="true" >
<EntitySet Name="HelpCommands" EntityType="HelpCommandsModel.HelpCommand" />
</EntityContainer>
<EntityType Name="HelpCommand">
<Key>
<PropertyRef Name="HelpName" />
</Key>
<Property Type="String" Name="HelpName" Nullable="false" />
<Property Type="String" Name="HelpText" 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="HelpCommandsModelStoreContainer" CdmEntityContainer="HelpCommandsEntities">
<EntitySetMapping Name="HelpCommands">
<EntityTypeMapping TypeName="IsTypeOf(HelpCommandsModel.HelpCommand)">
<MappingFragment StoreEntitySet="HelpCommands">
<ScalarProperty Name="HelpName" ColumnName="HelpName" />
<ScalarProperty Name="HelpText" ColumnName="HelpText" />
</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/2008/10/edmx">
<Connection>
<DesignerInfoPropertySet>
<DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
</DesignerInfoPropertySet>
</Connection>
<Options>
<DesignerInfoPropertySet>
<DesignerProperty Name="ValidateOnBuild" Value="true" />
<DesignerProperty Name="EnablePluralization" Value="True" />
<DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
</DesignerInfoPropertySet>
</Options>
<!-- Diagram content (shape and connector positions) -->
<Diagrams>
<Diagram Name="Model1" >
<EntityTypeShape EntityType="HelpCommandsModel.HelpCommand" Width="1.5" PointX="3.625" PointY="1.5" Height="1.4033821614583331" IsExpanded="true" />
</Diagram>
</Diagrams>
</Designer>
</edmx:Edmx>