EF 5.0 で削除ステートメントを実行しようとしています。5000〜40000レコードを削除すると、ここに私のコードがあります:
using(myEntity ctx = new myEntity) {
var q = from s in ctx.MyTable.where( x => x.accountID == 1234) select s;
ctx.myTable.Remove(q);
// because there is no ctx.DeleteObject(whatever)
// since this is not EF 4.0
}
エラーは次のとおりです。 「System.Linq.IQueryable」から「namespace.myTable」に変換できません
何か案が?