Allow adding of schema to entityTypeNames to better describe properties in the DbContext, navigational properties, and class names
services.AddHandlebarsTransformers(
entityTypeNameTransformer: n =>
{
if (n.Schema != null && !n.Schema.Equals("dbo", StringComparison.InvariantCultureIgnoreCase))
return n.Schema + n.Name;
return n.Name;
}
);
I'm working on a solution locally for my own needs - would like to contribute to the overall source if possible
I can't find an alternative way to do this.