How to use conversion parameter when building KendoGridEx?
tharidu opened this issue · 2 comments
tharidu commented
Thanks for the awesome framework. It works OOB. Can you give an example on how use conversion parameter when building KendoGridEx?
StefH commented
By default AutoMapper is used as conversion to convert Entities to ViewModels.
If you want your own conversion function; provide a function which implements this interface:
Func<IQueryable, IEnumerable> conversion
tharidu commented
Thanks for the answer StefH