Hi,
I have a business process that runs across a lot of table in search of customer data.
I have some tables that it is possible that the user never entered the screen from which the data is inserted to the table.
resulting that the table doesn't exists.
in the bp, when I try to locate the records via:
From = MyTable
Where.add(MyTable.customerId.IsEqualTo(customerId_prm))
I am getting an excpetion:
Invalid object name on the table name (because it doesn't exists.
what can I do to avoid this exception ?
maybe create the table if it doesn't exists.
tried AutoCreateTable but didn't work.
please note that I only query the table to get data and not to insert or update the data.

Thanks
Shuki