Our application has a feature where Customer can add their own fields to "Extension" tables. These "Extensions" are exposed on an object as a property of type DataTable.
I cannot know what is in there so I can't create fields for projection or whatever.
Can I use LLBLGen to run a SQL query and return a datatable...or do I have to use my own DAL for fetching, updating datatables?
So basically I need to be able to Select * From CustomerEXT Where Id = ?
Get the datatable...then be able to update it later if they made changes
Pretty simple...but I just didn't know if I could reuse LLBLGen DB code
Sean