Hi,
I'm using a datastore to retrieve data. The RetrieveAsync methode has a parameter called arguments of type object[]. How do I best use this parameter?
For example:
I'm trying to get all rows with a column that is smaller than 1000. How do i use the RetriveAsync methode to generate this sql:
"select * from table where column <= 1000;"
And how do i use this to add multiple arguments, to generate this:
"select * from table where column1 <= 1000 and column2 > 1000;"
The documentation doesn't really specify this.