On Wed, 2009-06-17 at 09:34 +0200, Giacomo Tesio wrote: > BTW, I'd like to know how Mono users, seing DbLinq under > System.Data.Linq should access such DbLinq's improvement over the Linq > to Sql code base.
They wouldn't. Mono's System.Data.Linq will have the same public API as .NET's System.Data.Linq. So added functionality that doesn't require an API change can be supported (e.g. DbLinqProvider and DbLinqConnectionType within the connection string, which allows connecting to non-Microsoft SQL Server databases). If a Mono uses needs to use the added functionality, they can either resort to Reflection, or just use DbLinq itself instead of the System.Data.Linq wrapper. - Jon --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
