Skip to content

Instantly share code, notes, and snippets.

@nest-don
Last active August 6, 2019 12:18
Show Gist options
  • Save nest-don/bf3f0211a3eb7088dea2eb349135d9a9 to your computer and use it in GitHub Desktop.
Save nest-don/bf3f0211a3eb7088dea2eb349135d9a9 to your computer and use it in GitHub Desktop.
// This configures the Trader Table
public class TraderConfiguration : IEntityTypeConfiguration<Trader>
{
public void Configure(EntityTypeBuilder<Trader> builder)
{
builder.Property(o => o.DateJoined)
.IsRequired()
.HasColumnType("datetime");
builder.ToTable("Trader");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment