How do I configure other user defined data-type with Entity Framework Core?
问题 I'm using scaffolded entities with Entiy Framework Core 2.1. The 3rd party database uses some unser defined data types (that I didn't know about) that don't seem to be recognized by EF-Core. According to The Fluent API HasColumnType Method and Reverse Enginer: Support type aliases (user-defined data types) this should work. However, I'm not sure if only for precofigured/built-in types like Name or any types. The engine generates this entity.Property(e => e.Status).HasColumnType("Enumeration")