通过加锁的等待来实现
可以详细点吗
public bool DeleteFromVTMapping(FormTypeVTMapping mappedCol) { base.Delete(mappedCol); base.SaveChanges(); return true; } public IQueryable<FormTypeVTMapping> GetColMappingListByFormType(int formTypeId) { return base.GetAll().Where(m=>m.FormTypeID == formTypeId); }
可以通过阻塞线程来实现
public bool DeleteFromVTMapping(FormTypeVTMapping mappedCol) { base.Delete(mappedCol); base.SaveChanges(); return true; } public IQueryable<FormTypeVTMapping> GetColMappingListByFormType(int formTypeId) { return base.GetAll().Where(m=>m.FormTypeID == formTypeId); }
怎么阻塞呢
人呢 大神还在吗
打个断点,然后你等够时间继续执行timeout就出来了
public bool DeleteFromVTMapping(FormTypeVTMapping mappedCol) { base.Delete(mappedCol); base.SaveChanges(); return true; } public IQueryable<FormTypeVTMapping> GetColMappingListByFormType(int formTypeId) { return base.GetAll().Where(m=>m.FormTypeID == formTypeId); }
比如这样, 断点打在哪里呢?
人呢 大神还在吗