展开实体CommandTimeout属性

时间:2018-10-31 12:54:01

标签: c# entity-framework

我使用的是复杂的视图,在某些情况下,返回结果需要花费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;
}

0 个答案:

没有答案