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 7.0.0-rc1, it isn't possible with the fluent API.
You can define the constraint manually in the migration
migrationBuilder.Sql("ALTER TABLE SomeTable ADD CONSTRAINT CK_SomeTable_SomeColumn CHECK (SomeColumn >= X);");