EventDay / Infusionsoft.net

A C# Wrapper around the Infusionsoft.com API
15 stars 22 forks source link

Query by Ids #58

Open jmawebtech opened 6 years ago

jmawebtech commented 6 years ago

Hi,

Is it possible to pull a list of invoice by ids? I am trying to create an in query:

var results = client.DataService.Query<InfusionSoft.Tables.Invoice>( page: new DataPage(1000, 0), queryBuilder: q => q.Add(c => c.Id, new List<int> { 1, 2, 3 }));

I receive an error that the method does not accept an array.