✅ How to get ids from tuple list?
I have following list:
All I want is call following method with departments ids as parameter:
I can do smth like this:
but it's not optimized
how to do better?
List<(string Path, DepartmentDto Department)>All I want is call following method with departments ids as parameter:
await _subjectClient.GetByDepartmentIds(); I can do smth like this:
but it's not optimized
how to do better?