c# - Enumerable.Any method is not supported -
i have code :
var jobs3 = _provider.context.query<jobresults>() .where(m => m.groups.any(y => usergroups.contains(y.groupname))) .tolist();
this method gives me exception in title. how can fix this? there way run method without using any? thanks.
i solved problem converting iqueryable list, process list , convert iqueryable.
Comments
Post a Comment