HasCheckConstraint has a name parameter that it uses as the name of the constraint in the database.
Constraints are database objects and their names must be unique in the whole database (not just the table they belong to... as I found out the hard way by getting into a conflict :smile:), so to mitigate this we should a use naming convention. Right now we have to do this manually and prepend our constraint names with the name of the table like this:
```c#
builder.HasCheckConstraint("AspNetUsers_UserName_SameAsEmail", ...);
builder.HasCheckConstraint("AspNetUsers_Created_NotBySelf", ...);
builder.HasCheckConstraint("AspNetUsers_LastLogonAtUtc_LastLogonInfo_BothOrNonePresent", ...);
That's why I created an extension method that does this for me:
```c#
/// <summary>
/// Calls <see cref="RelationalEntityTypeBuilderExtensions.HasCheckConstraint{TEntity}(EntityTypeBuilder{TEntity}, string, string)"/>
/// with the name of the table prepended to <paramref name="name"/> to prevent constraint name conflicts.
/// </summary>
public static EntityTypeBuilder<TEntity> HasLocalCheckConstraint<TEntity>(this EntityTypeBuilder<TEntity> entityTypeBuilder, string name, string sql) where TEntity : class
{
var tableName = entityTypeBuilder.Metadata.GetTableName();
return entityTypeBuilder.HasCheckConstraint(FormattableString.Invariant($"CK_{tableName}_{name}"), sql);
}
and also uses the standard CK prefix as a convention. Then I only use HasLocalCheckConstraint to create check constraints and have to be careful to never call HasCheckConstraint directly.
It would be nice if EF Core had this feature builtin or could do this automatically. It would also ensure that all database object created by EF Core follow the naming convention that it uses now, with a two letter prefix for the type of the object (such as PK, AK, FK, IX).
Just changing the existing behavior of HasCheckConstraint would of course be a huge breaking change and adding a parameter to opt-in to this behavior would be clumsy and it should really be the default in my opinion.
I also noticed that while methods like HasDefaultValue, HasDefaultValueSql and HasComputedColumnSql follow the convention where if they take SQL, their names end with Sql, and if there's an expression-based version, it doesn't. What if the existing method was deprecated and the new name would be HasCheckConstraintSql with this new naming behavior? If there's an expression-based version added later (#15409), that would take the name HasCheckConstraint and still follow the new behavior because it would be a separate overload from the deprecated one (or the deprecated one could be gone by that time).
To allow for compatibility with existing constraint names, the new method could take an optional parameter (bool or enum) to disable the name transformation, but it should be on by default in my opinion.
Alternatively, rather than differentiating the behavior between HasDefaultValue and HasDefaultValueSql and/or adding a parameter to specify the behavior, maybe this could be a new global convention that is applied by default, and for users that want to keep existing behavior, they could disable the convention globally?
Note for triage: we should do a review of the CheckConstraint code. Looks like the design could be lacking in a few areas. Looking at the PR it seems like a couple of people did review it, but we still missed things; we should discuss in the retrospective.
My current solution to this is a custom convention, if anyone is interested:
```c#
public sealed class ScopedCheckConstraintNameConvention : IModelFinalizedConvention
{
public void ProcessModelFinalized(IConventionModelBuilder modelBuilder, IConventionContext
{
foreach (var entityType in modelBuilder.Metadata.GetEntityTypes())
{
foreach (var checkConstraint in entityType.GetCheckConstraints().ToList())
{
var newName = FormattableString.Invariant($"CK_{entityType.GetTableName()}_{checkConstraint.Name}");
entityType.RemoveCheckConstraint(checkConstraint.Name);
entityType.AddCheckConstraint(newName, checkConstraint.Sql);
}
}
}
}
```
This is better than the extension method because if you set the table name after calling the extension method, it would still use the old table name.
I tried hard but couldn't find a single piece of documentation about constraint naming on SqlServer. It always talks about naming rules but not the scope.
Based on empirical testing data,
There are 2 types of constraints
Type1 needs to have unique name across database. PK on blog table with same name as AK on post table also fails.
Type2 needs to have same name in given table.
(side effect of above, you can have PK & index with same name as long as in different table.)
We have validation to see if PK/AK/FK/Index names are unique in given table also accounting for table sharing.
Missing parts:
Type1 needs to have unique name across database. PK on blog table with same name as AK on post table also fails.
In SqlServer, Type1 names need to be unique across a schema not the entire database, the code below runs fine.
create schema a
create schema b
create table a.tableName (columnName int, constraint ConstraintName check (columnName=1))
create table b.tableName (columnName int, constraint ConstraintName check (columnName=1))
Supporting documentation - https://docs.microsoft.com/en-us/sql/t-sql/statements/create-table-transact-sql
CONSTRAINT Is an optional keyword that indicates the start of the definition of a PRIMARY KEY, NOT NULL, UNIQUE, FOREIGN KEY, or CHECK constraint.
constraint_name Is the name of a constraint. Constraint names must be unique within the schema to which the table belongs.
Removing from backlog to discuss what to do here for the plugin verses manually written calls to HasCheckConstraint.
Notes from team discussion:
If you plan to add an overload to HasCheckConstraint that doesn't take a name, it would be great if you could also add an overload to HasDefaultValue that does take a name to align the two.