我使用的是复杂的视图,在某些情况下,返回结果需要花费30秒钟以上的时间。默认的CommandTimeout属性为30秒。我该如何增加呢?
public static List<TestView> GetTest()
{
List<TestView> listContractors = new List<TestView>();
using (TestEntities testEntity = new TestEntities())
{
listContractors = testEntity.TestViews.AsNoTracking().OrderBy(s => s.CarrierID)).ToList();
}
return listContractors;
}