Is there a way to specify a default value converter for EF core when it hits a certain type instead of having to specify it manually per entity in the fluent API?
Example: When the type Guid is hit, EF core knows to use the sequential Guid generator. How can we do the same with a custom type?