|
4 | 4 | <edmx:Runtime>
|
5 | 5 | <!-- SSDL content -->
|
6 | 6 | <edmx:StorageModels>
|
7 |
| - <Schema Namespace="EdmxDotNetCoreApp.Entities.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"> |
| 7 | + <Schema Namespace="EdmxDotNetCoreSample.Entities.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"> |
8 | 8 | <EntityType Name="Droids">
|
9 | 9 | <Key>
|
10 | 10 | <PropertyRef Name="Name" />
|
|
30 | 30 | </Dependent>
|
31 | 31 | </ReferentialConstraint>
|
32 | 32 | </Association>
|
33 |
| - <EntityContainer Name="EdmxDotNetCoreAppEntitiesStoreContainer"> |
| 33 | + <EntityContainer Name="EdmxDotNetCoreSampleEntitiesStoreContainer"> |
34 | 34 | <EntitySet Name="Droids" EntityType="Self.Droids" Schema="dbo" store:Type="Tables" />
|
35 | 35 | <EntitySet Name="People" EntityType="Self.People" Schema="dbo" store:Type="Tables" />
|
36 | 36 | <AssociationSet Name="FK_dbo_Droids_dbo_People_MasterName" Association="Self.FK_dbo_Droids_dbo_People_MasterName">
|
|
42 | 42 | </edmx:StorageModels>
|
43 | 43 | <!-- CSDL content -->
|
44 | 44 | <edmx:ConceptualModels>
|
45 |
| - <Schema Namespace="EdmxDotNetCoreApp.Entities" 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"> |
| 45 | + <Schema Namespace="EdmxDotNetCoreSample.Entities" 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"> |
46 | 46 | <EntityType Name="Thing">
|
47 | 47 | <Key>
|
48 | 48 | <PropertyRef Name="Name" />
|
|
60 | 60 | </EntityType>
|
61 | 61 | <Association Name="FK_dbo_Droids_dbo_People_MasterName">
|
62 | 62 | <End Role="People" Type="Self.Person" Multiplicity="0..1" />
|
63 |
| - <End Role="Droids" Type="EdmxDotNetCoreApp.Entities.Thing" Multiplicity="*" /> |
| 63 | + <End Role="Droids" Type="EdmxDotNetCoreSample.Entities.Thing" Multiplicity="*" /> |
64 | 64 | <ReferentialConstraint>
|
65 | 65 | <Principal Role="People">
|
66 | 66 | <PropertyRef Name="Name" />
|
|
71 | 71 | </ReferentialConstraint>
|
72 | 72 | </Association>
|
73 | 73 | <EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
|
74 |
| - <EntitySet Name="Things" EntityType="EdmxDotNetCoreApp.Entities.Thing" /> |
| 74 | + <EntitySet Name="Things" EntityType="EdmxDotNetCoreSample.Entities.Thing" /> |
75 | 75 | <EntitySet Name="People" EntityType="Self.Person" />
|
76 | 76 | <AssociationSet Name="FK_dbo_Droids_dbo_People_MasterName" Association="Self.FK_dbo_Droids_dbo_People_MasterName">
|
77 | 77 | <End Role="People" EntitySet="People" />
|
|
83 | 83 | <!-- C-S mapping content -->
|
84 | 84 | <edmx:Mappings>
|
85 | 85 | <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
|
86 |
| - <EntityContainerMapping StorageEntityContainer="EdmxDotNetCoreAppEntitiesStoreContainer" CdmEntityContainer="Entities"> |
| 86 | + <EntityContainerMapping StorageEntityContainer="EdmxDotNetCoreSampleEntitiesStoreContainer" CdmEntityContainer="Entities"> |
87 | 87 | <EntitySetMapping Name="Things">
|
88 |
| - <EntityTypeMapping TypeName="EdmxDotNetCoreApp.Entities.Thing"> |
| 88 | + <EntityTypeMapping TypeName="EdmxDotNetCoreSample.Entities.Thing"> |
89 | 89 | <MappingFragment StoreEntitySet="Droids">
|
90 | 90 | <ScalarProperty Name="Name" ColumnName="Name" />
|
91 | 91 | <ScalarProperty Name="OwnerName" ColumnName="MasterName" />
|
92 | 92 | </MappingFragment>
|
93 | 93 | </EntityTypeMapping>
|
94 | 94 | </EntitySetMapping>
|
95 | 95 | <EntitySetMapping Name="People">
|
96 |
| - <EntityTypeMapping TypeName="EdmxDotNetCoreApp.Entities.Person"> |
| 96 | + <EntityTypeMapping TypeName="EdmxDotNetCoreSample.Entities.Person"> |
97 | 97 | <MappingFragment StoreEntitySet="People">
|
98 | 98 | <ScalarProperty Name="Name" ColumnName="Name" />
|
99 | 99 | </MappingFragment>
|
|
0 commit comments