I tried but there's something I'm missing,
I´ve browse the where statement type options and I realize that I need onother one. May be the correct question is how can i add a new where statement type with it's corresponding statement clause.
I´ve found an example but it´s not exactly what I want. If I do it in this way I have to hardcode something I don´t want to.
'-- Establish Locals
Dim where As WhereStatement
Dim MyLocalidades As New System.Collections.ArrayList()
'-- Determine which values will be included as part of the "IN" tag
MyLocalidades.Add("Badia")
'-- Create the where statement. In this example, we are going to have the test perform
where = New WhereStatement(New String() {"Localidad"}, MyLocalidades, ...
'-- Add the where statement to the collection
e.RawWhereStatementsCollection.Add(where)
Regards.