Ok, so I guess the only way to do use DbLinq and allow dynamic queries
at the same time requires:
1. Using "base.Connection.CreateCommand()" to get a command object to
perform a text query, then iterate over the results and copy into my
custom dynamic tables - keeping in mind this is a db-specific query
language.
2. Create a framework to convert my own "primitively supported SQL
language" into that understood by the different vendors for use with
#1 (I have my own wrapper for each vendor).

Some things I did also was to unseal the Table<> class (for my own
type-specific sub-classes [I have a good reason]), create a new
GetTable<>() method that accepts my custom generic type (i.e.
SpecialTable<Product>), recompile the source, and voila!, then DbLinq
is none the wiser. ;)

-jw

-- 
You received this message because you are subscribed to the Google Groups 
"DbLinq" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/dblinq?hl=en.

Reply via email to