I can't seem to find any good examples but what is the best way to do a query like this
tbl.Query(SELECT * FROM PRODUCTS WHERE ProductId IN (@Ids)", idlist)
I see that Dapper ORM, you can just put in a list and it knows what to do. Can you do this with Massive or do I have to build out the parameters like @0,@1,@2 and turn the list into an array idList.ToArray()?