I'm trying to find all cards in a specific list using Trello.NET In the examples given it's clear to to find all list names in a Board, and all Cards in a Board. However if I want to find all Cards in a specific List, as far as I can see I need ListID (can't filter by List Name) by using trello.Lists.WithId()
Knowing the List name, how can I determine what it's ListId is so I can subsequently filter for all Cards in it?
And if I would subsequently like to edit an existing Card, how can I determine the CardId.
Use LINQ and filter in-memory:
You could use a similar technique to find a card if you know it's name: use
trello.Cards.ForBoardortrello.Cards.ForListfirst, and then filter by name afterwards.For cards there is another option though:
trello.Cards.Search. For example:The search will be performed on the server in this case.