Is it possible to add CHECK constraint with fluent API in Entity Framework 7?
I need to acheive something like this:
... ADD CONSTRAINT CK_SomeTable_
As of EF Core 3.0, you can use
protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity(entity => entity.HasCheckConstraint("CK_SomeTable_SomeColumn", "[SomeColumn] >= X"); }