Có vẻ như đây là một vấn đề đã biết mà EF đặt ra Arithabort
tắt. Và vì lý do nào đó, ExecuteStoreCommand
không hoạt động, trong khi mã sau hoạt động:
var cmd = ((EntityConnection)db.Connection).StoreConnection.CreateCommand();
cmd.Connection.Open();
cmd.CommandText = "set arithabort on";
cmd.ExecuteNonQuery();
Xem câu trả lời này cho câu hỏi này để biết thêm.