Shapefile query with list in expression

Dear users,
I am struggeling a little bit with the Shapefile.Table.Query object and the linked Expression Class Reference.
Is there an option on how to select by a list of values?
Something like:
List attributes = new List { “Attribute1”, “Attribute2”}
string query = $"[Attribute_Field] in {String.Join(",", attributes)} ";

Or do I have to iterate through my list with:
string query1 = "[Attribute_Field] = “Attribute1"”;
string query2 = "[Attribute_Field] = “Attribute2"”;

Many thanks in advance!!
Best
Florian