On Fri, 2010-08-20 at 14:57 -0700, Sandro wrote: > Finally got around to trying this again with your updated dlls, but > I'm still getting the error. Probably should mention I'm running > Windows.
Just as a basic sanity measure, are you sure you're running your app via Mono and not .NET? I don't have the Windows install around to quickly test on, but if you just use 'sqlmetal.exe' at the command line you'll be using the .NET runtime, which will then attempt to load .NET's System.Data.Linq.dll, which will fail to find any DbLinq types (for ~obvious reasons). You'll need to ensure that 'mono sqlmetal.exe' is being used when using Mono's sqlmetal.exe. (I suppose a sqlmetal.bat might be shipped to ensure that mono is being used, but iirc .exe files are preferred to .bat files, so 'sqlmetal' will load sqlmetal.exe, not sqlmetal.bat...) - 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.
