The result of a query cannot be enumerated more than once

后端 未结 3 1694
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-27 06:53

I am using the entity framework (ef) and am getting the following error:

\"The result of a query cannot be enumerated more than once.\".

3条回答
  •  难免孤独
    2020-11-27 07:30

    Try explicitly enumerating the results by calling ToList().

    Change

    foreach (var item in query)
    

    to

    foreach (var item in query.ToList())
    

提交回复
热议问题