sqlite - Why does DbMetal Generate Table Attribute with "main"? -
I am a newbie with DBLink and Sqlite. When DbMetal generates Nortwind.cs (C #), this table is a symbol of some methods with the attribute:
[table (name = "main categories")] // C #
After using DB metal to create a Nortwind.vb (VB.Net) file, the testing program was aborted because there is no table called "main.Categories" was. However, when I delete "main", then it works:
'VB.Net & lt; Table (name: = "Categories") & gt; _
I do not understand why the "main" is generated at all why it works for C # but not for VB.Net? By default, "main" creates the "Generate .dbml file" mode in DBMittal -
Database logic can be changed by specifying. However, as of this time, the name of the class can be changed using the database, but it still writes "main" in the table attribute, so that it does not fix it once.
Comments
Post a Comment