area-querycustomer-reportedgood first issueneeds-design
Repository metrics
- Stars
- (14,651 stars)
- PR merge metrics
- (平均マージ 23d 13h) (30d で 154 merged PRs)
説明
some query may take long time to complete, so I'm wondering if we could have an api for set command out for the long-time query only, not global?
maybe an extension method like follows:
var posts = dbContext.Posts.AsNoTracking()
.Where(p=>p.Tile == "12131313")
.WithCommandTimeout(20)
.ToList();