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

Popular posts from this blog

python - PyInstaller UAC not working in onefile mode -

python - RuntimeError: can't re-enter readline -

php - Need to store a large amount of data in session with CI 3 but on storing large data in session it is itself destorying automatically -