I am using FluentMigrator to create a new table in DB. After I created, i realized that I need to add a constraint like the following in T-Sql:
Assume I already have a table tableA
Alter Table tableA
Add Constraint ConstraintA CHECK(([ColA]>=(0) AND [ColA]<(100)))
How do I create the constraint using FluentMigrator in .Net? I have googled and did not find any answer. Thanks!