-
Notifications
You must be signed in to change notification settings - Fork 0
/
Model1.edmx
158 lines (158 loc) · 9.11 KB
/
Model1.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?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="BreakfastCardsModel.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="Table_ActualQuantity">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="nvarchar" MaxLength="50" Nullable="false" />
<Property Name="Year" Type="nchar" MaxLength="10" />
<Property Name="Month" Type="nchar" MaxLength="10" />
<Property Name="GroupName" Type="nchar" MaxLength="10" />
<Property Name="Cards" Type="nchar" MaxLength="10" />
<Property Name="ActualQuantity" Type="int" />
<Property Name="LostCard_Boolean" Type="nchar" MaxLength="10" />
<Property Name="Workdays" Type="int" />
</EntityType>
<EntityType Name="Table_BreakfastBoolean">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="nvarchar" MaxLength="50" Nullable="false" />
<Property Name="Year" Type="nchar" MaxLength="10" />
<Property Name="Month" Type="nchar" MaxLength="10" />
<Property Name="GroupName" Type="nchar" MaxLength="10" />
<Property Name="Cards" Type="nchar" MaxLength="10" />
<Property Name="Data" Type="nchar" MaxLength="10" />
<Property Name="Breakfast_Boolean" Type="nchar" MaxLength="10" />
</EntityType>
<EntityType Name="Table_FourName">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="nchar" MaxLength="10" Nullable="false" />
<Property Name="Date" Type="nvarchar" MaxLength="50" />
<Property Name="GroupName" Type="nvarchar" MaxLength="50" />
<Property Name="Quantity" Type="int" />
<Property Name="Manager" Type="nvarchar" MaxLength="50" />
</EntityType>
<EntityContainer Name="BreakfastCardsModelStoreContainer">
<EntitySet Name="Table_ActualQuantity" EntityType="Self.Table_ActualQuantity" Schema="dbo" store:Type="Tables" />
<EntitySet Name="Table_BreakfastBoolean" EntityType="Self.Table_BreakfastBoolean" Schema="dbo" store:Type="Tables" />
<EntitySet Name="Table_FourName" EntityType="Self.Table_FourName" Schema="dbo" store:Type="Tables" />
</EntityContainer>
</Schema></edmx:StorageModels>
<!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="BreakfastCardsModel" 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="Table_ActualQuantity">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
<Property Name="Year" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="Month" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="GroupName" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="Cards" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="ActualQuantity" Type="Int32" />
<Property Name="LostCard_Boolean" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="Workdays" Type="Int32" />
</EntityType>
<EntityType Name="Table_BreakfastBoolean">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
<Property Name="Year" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="Month" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="GroupName" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="Cards" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="Data" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
<Property Name="Breakfast_Boolean" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
</EntityType>
<EntityType Name="Table_FourName">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="String" MaxLength="10" FixedLength="true" Unicode="true" Nullable="false" />
<Property Name="Date" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="GroupName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="Quantity" Type="Int32" />
<Property Name="Manager" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
</EntityType>
<EntityContainer Name="BreakfastCardsEntities" annotation:LazyLoadingEnabled="true">
<EntitySet Name="Table_ActualQuantity" EntityType="Self.Table_ActualQuantity" />
<EntitySet Name="Table_BreakfastBoolean" EntityType="Self.Table_BreakfastBoolean" />
<EntitySet Name="Table_FourName" EntityType="Self.Table_FourName" />
</EntityContainer>
</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="BreakfastCardsModelStoreContainer" CdmEntityContainer="BreakfastCardsEntities">
<EntitySetMapping Name="Table_ActualQuantity">
<EntityTypeMapping TypeName="IsTypeOf(BreakfastCardsModel.Table_ActualQuantity)">
<MappingFragment StoreEntitySet="Table_ActualQuantity">
<ScalarProperty Name="ID" ColumnName="ID" />
<ScalarProperty Name="Year" ColumnName="Year" />
<ScalarProperty Name="Month" ColumnName="Month" />
<ScalarProperty Name="GroupName" ColumnName="GroupName" />
<ScalarProperty Name="Cards" ColumnName="Cards" />
<ScalarProperty Name="ActualQuantity" ColumnName="ActualQuantity" />
<ScalarProperty Name="LostCard_Boolean" ColumnName="LostCard_Boolean" />
<ScalarProperty Name="Workdays" ColumnName="Workdays" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="Table_BreakfastBoolean">
<EntityTypeMapping TypeName="IsTypeOf(BreakfastCardsModel.Table_BreakfastBoolean)">
<MappingFragment StoreEntitySet="Table_BreakfastBoolean">
<ScalarProperty Name="ID" ColumnName="ID" />
<ScalarProperty Name="Year" ColumnName="Year" />
<ScalarProperty Name="Month" ColumnName="Month" />
<ScalarProperty Name="GroupName" ColumnName="GroupName" />
<ScalarProperty Name="Cards" ColumnName="Cards" />
<ScalarProperty Name="Data" ColumnName="Data" />
<ScalarProperty Name="Breakfast_Boolean" ColumnName="Breakfast_Boolean" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="Table_FourName">
<EntityTypeMapping TypeName="IsTypeOf(BreakfastCardsModel.Table_FourName)">
<MappingFragment StoreEntitySet="Table_FourName">
<ScalarProperty Name="ID" ColumnName="ID" />
<ScalarProperty Name="Date" ColumnName="Date" />
<ScalarProperty Name="GroupName" ColumnName="GroupName" />
<ScalarProperty Name="Quantity" ColumnName="Quantity" />
<ScalarProperty Name="Manager" ColumnName="Manager" />
</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="true" />
<DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
<DesignerProperty Name="UseLegacyProvider" Value="False" />
<DesignerProperty Name="CodeGenerationStrategy" Value="无" />
</DesignerInfoPropertySet>
</Options>
<!-- Diagram content (shape and connector positions) -->
<Diagrams></Diagrams>
</Designer>
</edmx:Edmx>