We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d75546 commit 4ed13cbCopy full SHA for 4ed13cb
samples/core/Modeling/Inheritance/FluentAPI/DiscriminatorPropertyConfiguration.cs
@@ -10,7 +10,7 @@ public class MyContext : DbContext
10
protected override void OnModelCreating(ModelBuilder modelBuilder)
11
{
12
modelBuilder.Entity<Blog>()
13
- .Property("Discriminator")
+ .Property("blog_type")
14
.HasMaxLength(200);
15
}
16
#endregion
@@ -25,4 +25,4 @@ public class Blog
25
public class RssBlog : Blog
26
27
public string RssUrl { get; set; }
28
-}
+}
0 commit comments