You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The methods end up generating WIQL statements, but there is no way for the caller to know what those were (e.g. for logging / diagnostic purposes).
IWorkItemStore.Query(int) ends up calling IWorkItemStore.Query(IEnumerable<int>), which in turn calls IQueryFactory.Create(IEnumerable<int>) that generates the WIQL.
The text was updated successfully, but these errors were encountered:
The methods end up generating WIQL statements, but there is no way for the caller to know what those were (e.g. for logging / diagnostic purposes).
IWorkItemStore.Query(int)
ends up callingIWorkItemStore.Query(IEnumerable<int>)
, which in turn callsIQueryFactory.Create(IEnumerable<int>)
that generates the WIQL.The text was updated successfully, but these errors were encountered: