The result of a query cannot be enumerated more than once

后端 未结 3 1696
佛祖请我去吃肉
佛祖请我去吃肉 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:22

    if you getting this type of error so I suggest you used to stored proc data as usual list then binding the other controls because I also get this error so I solved it like this ex:-

    repeater.DataSource = data.SPBinsReport().Tolist();
    repeater.DataBind();
    

    try like this

提交回复
热议问题