Created
June 16, 2019 17:00
-
-
Save nest-don/6e8215b340e96646816171bd66b4b9fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class IndustryConfiguration : IEntityTypeConfiguration<Industry> | |
{ | |
public void Configure(EntityTypeBuilder<Industry> builder) | |
{ | |
builder.HasKey(o => o.Id); | |
builder.Property(o => o.Tag) | |
.IsRequired() | |
.HasColumnType("varchar(64)"); | |
builder.HasIndex(o => o.Tag) | |
.IsUnique(); | |
builder.Property(o => o.Name).HasColumnType("varchar(255)"); | |
builder.ToTable("Industry"); | |
builder.HasMany(c => c.Shares) | |
.WithOne(e => e.OwnedBy as Industry); | |
builder.HasData( | |
new Industry { Id = 1, Tag = "tech", Name = "Technology" }, | |
new Industry { Id = 2, Tag = "finc", Name = "Financial" } | |
); | |
} | |
} | |
public class ShareConfiguration : IEntityTypeConfiguration<Share> | |
{ | |
public void Configure(EntityTypeBuilder<Share> builder) | |
{ | |
builder.HasKey(o => o.Id); | |
builder.Property(o => o.Tag) | |
.IsRequired() | |
.HasColumnType("varchar(64)"); | |
builder.HasIndex(o => o.Tag) | |
.IsUnique(); | |
builder.Property(o => o.Price).HasColumnType("decimal"); | |
builder.ToTable("Share"); | |
builder.HasData( | |
new Share { Id = 1, IndustryId = 1, Tag = "BUD", Price = 10.28M }, | |
new Share { Id = 2, IndustryId = 1, Tag = "LWP", Price = 15.2M }, | |
new Share { Id = 3, IndustryId = 1, Tag = "WGL", Price = 35.0M }, | |
new Share { Id = 4, IndustryId = 2, Tag = "MGP", Price = 12.0M }, | |
new Share { Id = 5, IndustryId = 2, Tag = "MVT", Price = 11.60M }, | |
new Share { Id = 6, IndustryId = 2, Tag = "GCM", Price = 61.64M } | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment