efcore / EFCore.NamingConventions

Entity Framework Core plugin to apply naming conventions to table and column names (e.g. snake_case)
Apache License 2.0
715 stars 73 forks source link

Changed INameRewriter parameter to align with EF Core IConventionKeyBuilder.Metadata.GetName() return type Issue #279 #280

Open mattmentrup opened 3 months ago

mattmentrup commented 3 months ago

Changed INameRewriter parameter to align with EF Core IConventionKeyBuilder.Metadata.GetName() return type of string?.

Updated all classes that implemented INameRewriter with the updated method signatures and handled any spots where a null value could have been referenced before checking if the reference contained a value.

roji commented 3 months ago

Thanks; to set expectations, I'll only be able to review this much later - I typically do some work on this plugin after major EF/.NET work is already done for the current major release.