StefH/KendoGridBinderEx

How to use conversion parameter when building KendoGridEx?

tharidu opened this issue · 2 comments

Thanks for the awesome framework. It works OOB. Can you give an example on how use conversion parameter when building KendoGridEx?

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

Thanks for the answer StefH