Q:
I have a list of objects like this:
List<object> entities = GetallEntities();
The first object in the previous list is : List<Books>.
Now i wanna to get all the books which id
exist in the following list:
List<string> BookIds = new List<string>();
Assuming that your
Booksclass has anIdproperty and one instance represents one book: