我正在尝试使用ExecuteStoreQuery
这样的 linq 方法从表中删除多行
string query = "delete from IMPORTStatistics where districtid='" + districtId + "'";
db.ExecuteStoreQuery<int>(query);
但它抛出了这个异常
"The data reader has more than one field. Multiple fields are not valid for EDM primitive types."
我究竟做错了什么?
仅供参考,我正在使用 MySql。