Support for filtering DTO's by namespace
It'll be really useful to be able to define namespaces for DTO filtering. Currently I can specify Types to include or exclude but doing it by namespace will be much more useful in situations where there are too many types to include or exclude.
3
votes

You can include a Request DTO and all its dependent Types it references with a .* suffix, e.g:
IncludeTypes: MyRequest.*
You can also include all types with a C# namespace with the /* suffix, e.g:
IncludeTypes: MyApp.ServiceModel.Admin/*
This change is available from v5.0.3 that’s now available on MyGet.