I'm messing around with CQLinq and was trying to write a query to find the types in my project that are used as generic type params to a 3rd party generic method.
To be more specific, we use a 3rd party library called AutoMapper which has a static generic method, Mapper.CreateMap<T1, T2>()
. Is it possible to write a query to find which types from my code are used as params to the CreateMap method?
Thanks.