From 55674b7683454db7690886eca7bf86127b5616ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Milton=20Sampaio?= Date: Sun, 6 Dec 2020 17:00:19 -0300 Subject: [PATCH] Update whatsnew.md "education" word was spelled incorrectly. --- entity-framework/core/what-is-new/ef-core-5.0/whatsnew.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entity-framework/core/what-is-new/ef-core-5.0/whatsnew.md b/entity-framework/core/what-is-new/ef-core-5.0/whatsnew.md index 023c4c0d9d..6e855e5eec 100644 --- a/entity-framework/core/what-is-new/ef-core-5.0/whatsnew.md +++ b/entity-framework/core/what-is-new/ef-core-5.0/whatsnew.md @@ -710,7 +710,7 @@ CREATE TABLE [Animals] ( [Species] nvarchar(max) NULL, [Discriminator] nvarchar(max) NOT NULL, [Name] nvarchar(max) NULL, - [EdcuationLevel] nvarchar(max) NULL, + [EducationLevel] nvarchar(max) NULL, [FavoriteToy] nvarchar(max) NULL, CONSTRAINT [PK_Animals] PRIMARY KEY ([Id]) ); @@ -734,7 +734,7 @@ CREATE TABLE [Pets] ( CREATE TABLE [Cats] ( [Id] int NOT NULL, - [EdcuationLevel] nvarchar(max) NULL, + [EducationLevel] nvarchar(max) NULL, CONSTRAINT [PK_Cats] PRIMARY KEY ([Id]), CONSTRAINT [FK_Cats_Animals_Id] FOREIGN KEY ([Id]) REFERENCES [Animals] ([Id]) ON DELETE NO ACTION, CONSTRAINT [FK_Cats_Pets_Id] FOREIGN KEY ([Id]) REFERENCES [Pets] ([Id]) ON DELETE NO ACTION @@ -770,7 +770,7 @@ public class Pet : Animal [Table("Cats")] public class Cat : Pet { - public string EdcuationLevel { get; set; } + public string EducationLevel { get; set; } } [Table("Dogs")]