phil-E
Results
1
comments of
phil-E
I have found the issue in ReflectingTypeResolver.cs. Changing: private static string Classify(string typeName) { return typeName.Underscore().Singularize().Pascalize(); } to: private static string Classify(string typeName) { return typeName.Underscore().Singularize(**false**).Pascalize(); } The bool parameter...