|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | | -<edmx:Edmx Version="2.0" xmlns:edmx="http://schemas.microsoft.com/ado/2008/10/edmx"> |
| 2 | +<edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx"> |
3 | 3 | <!-- EF Runtime content --> |
4 | 4 | <edmx:Runtime> |
5 | 5 | <!-- SSDL content --> |
6 | 6 | <edmx:StorageModels> |
7 | | - <Schema Namespace="tempdbModel.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2008" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl"> |
| 7 | + <Schema Namespace="tempdbModel.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2008" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl"> |
8 | 8 | <EntityContainer Name="tempdbModelStoreContainer"> |
9 | | - <EntitySet Name="Posts" EntityType="tempdbModel.Store.Posts" store:Type="Tables" Schema="dbo" /> |
| 9 | + <EntitySet Name="Posts" EntityType="tempdbModel.Store.Posts" store:Type="Tables" Schema="dbo" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" /> |
10 | 10 | </EntityContainer> |
11 | 11 | <EntityType Name="Posts"> |
12 | 12 | <Key> |
|
29 | 29 | </Schema></edmx:StorageModels> |
30 | 30 | <!-- CSDL content --> |
31 | 31 | <edmx:ConceptualModels> |
32 | | - <Schema Namespace="tempdbModel" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2008/09/edm"> |
33 | | - <EntityContainer Name="tempdbEntities1" annotation:LazyLoadingEnabled="true"> |
| 32 | + <Schema Namespace="tempdbModel" Alias="Self" xmlns="http://schemas.microsoft.com/ado/2009/11/edm"> |
| 33 | + <EntityContainer Name="tempdbEntities1" annotation:LazyLoadingEnabled="true" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation"> |
34 | 34 | <EntitySet Name="Posts" EntityType="tempdbModel.Post" /> |
35 | 35 | </EntityContainer> |
36 | 36 | <EntityType Name="Post"> |
37 | 37 | <Key> |
38 | 38 | <PropertyRef Name="Id" /> |
39 | 39 | </Key> |
40 | | - <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" /> |
| 40 | + <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" /> |
41 | 41 | <Property Name="Text" Type="String" Nullable="false" MaxLength="Max" Unicode="false" FixedLength="false" /> |
42 | 42 | <Property Name="CreationDate" Type="DateTime" Nullable="false" /> |
43 | 43 | <Property Name="LastChangeDate" Type="DateTime" Nullable="false" /> |
|
55 | 55 | </edmx:ConceptualModels> |
56 | 56 | <!-- C-S mapping content --> |
57 | 57 | <edmx:Mappings> |
58 | | - <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2008/09/mapping/cs"> |
| 58 | + <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs"> |
59 | 59 | <EntityContainerMapping StorageEntityContainer="tempdbModelStoreContainer" CdmEntityContainer="tempdbEntities1"> |
60 | 60 | <EntitySetMapping Name="Posts"><EntityTypeMapping TypeName="tempdbModel.Post"><MappingFragment StoreEntitySet="Posts"> |
61 | 61 | <ScalarProperty Name="Id" ColumnName="Id" /> |
|
77 | 77 | </edmx:Mappings> |
78 | 78 | </edmx:Runtime> |
79 | 79 | <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) --> |
80 | | - <Designer xmlns="http://schemas.microsoft.com/ado/2008/10/edmx"> |
| 80 | + <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx"> |
81 | 81 | <Connection> |
82 | 82 | <DesignerInfoPropertySet> |
83 | 83 | <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" /> |
|
0 commit comments