Constraints - HomeroThompson/firehawk GitHub Wiki

Constraints

Firehawks lets you choose the casing convention for all the constraint names. These are the available options:

Default

The constraint names are generated using the database casing convention. This is the default option so you don't need to set it explicitly.

.ConfigureDatabaseConventions()
    .UseConventionForConstraintNames(ConstraintNamingConvention.Default)
.EndConfig()
Uppercase

The constraint names are generated using the uppercase casing convention

.ConfigureDatabaseConventions()
    .UseConventionForConstraintNames(ConstraintNamingConvention.Uppercase)
.EndConfig()
Lowercase

The constraint names are generated using the lowercase casing convention

.ConfigureDatabaseConventions()
    .UseConventionForConstraintNames(ConstraintNamingConvention.Lowercase)
.EndConfig()