Joseph Filbert

Results 2 comments of Joseph Filbert

Turns out this issue is worse. It's not about nice to have. It also makes returning non-enumerable of DTO not working. For example: ```csharp return _context.Set().Where(s => s.Id == 1).ProjectToType()...

I got also similar issue. It seems happens only with inheritance mode. In my case: ```csharp public abstract class JobApplicationStatus: SmartEnum { private JobApplicationStatus() : this("_default") { } private JobApplicationStatus(string...