-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.edmx
76 lines (76 loc) · 4.19 KB
/
data.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
<?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="user_dataModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2008" 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_1">
<Key>
<PropertyRef Name="User_ID" />
</Key>
<Property Name="User_ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
<Property Name="Username" Type="nvarchar" MaxLength="50" />
<Property Name="User_Mail" Type="nvarchar" MaxLength="50" />
<Property Name="User_Password" Type="nvarchar" MaxLength="50" />
</EntityType>
<EntityContainer Name="user_dataModelStoreContainer">
<EntitySet Name="Table_1" EntityType="Self.Table_1" Schema="dbo" store:Type="Tables" />
</EntityContainer>
</Schema>
</edmx:StorageModels>
<!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="user_dataModel" 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_1">
<Key>
<PropertyRef Name="User_ID" />
</Key>
<Property Name="User_ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="Username" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="User_Mail" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
<Property Name="User_Password" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
</EntityType>
<EntityContainer Name="user_dataEntities" annotation:LazyLoadingEnabled="true">
<EntitySet Name="Table_1" EntityType="Self.Table_1" />
</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="user_dataModelStoreContainer" CdmEntityContainer="user_dataEntities">
<EntitySetMapping Name="Table_1">
<EntityTypeMapping TypeName="user_dataModel.Table_1">
<MappingFragment StoreEntitySet="Table_1">
<ScalarProperty Name="User_ID" ColumnName="User_ID" />
<ScalarProperty Name="Username" ColumnName="Username" />
<ScalarProperty Name="User_Mail" ColumnName="User_Mail" />
<ScalarProperty Name="User_Password" ColumnName="User_Password" />
</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="false" />
<DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
<DesignerProperty Name="UseLegacyProvider" Value="true" />
<DesignerProperty Name="CodeGenerationStrategy" Value="None" />
</DesignerInfoPropertySet>
</Options>
<!-- Diagram content (shape and connector positions) -->
<Diagrams></Diagrams>
</Designer>
</edmx:Edmx>