I'm a newbie with DBLink and Sqlite. When DbMetal generates Nortwind.cs (C#) it marks some methods with a Table attribute:
[Table(Name="main.Categories")] // C#
After I used DbMetal to create a Nortwind.vb (VB.Net) file, the test program aborted because there was no table named "main.Categories". However, when I removed "main.", it works:
' VB.Net
<Table(Name:="Categories")> _
I'm just not understand why "main" is generated at all. Why does it work for C# but not for VB.Net?