Tagged Questions
The dbmetal tag has no wiki summary.
2
votes
1answer
1k views
DBMetal generating an invalid class for sqlite_sequence
I'm using DBLinq and DBMetal.exe to generate Linq-to-SQL like classes off an SQLite database. Every time I use DBMetal to regenerate my DataContext, it generates a class for sqlite_sequence. The ...
1
vote
0answers
26 views
Change class name in pre-build event [closed]
Possible Duplicate:
How to set the DataContext class name with DbMetal?
I use DbMetal in my pre-build event to generate the desired code file. DbMetal generates a class called Main. In its ...
1
vote
1answer
42 views
How to serialize instances of classes generated by DbMetal?
I noticed DbMetal generates classes that don't implement the ISerializable interface, nor are marked with DataContractAttribute. What is the easiest way of serializing such classes? Is there any ...
1
vote
1answer
147 views
How to set the DataContext class name with DbMetal?
DbLinq's DbMetal generates a Main class which inherits DataContext. I don't want it to be Main. How to change that?
1
vote
1answer
179 views
Why does DbMetal Generate Table Attribute with “main”?
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 ...
1
vote
1answer
512 views
DbMetal chokes on repeated foreign key references in SQLite - any ideas?
I've been struggling to get DbMetal to process my SQLite database. I finally isolated the problem. It won't allow a table to have two foreign key references to the same column.
For example, a SQLite ...
1
vote
1answer
2k views
How can i use DBLinq >> DBMetal tool with sqlite?
Please provide samples of command line tool dbmetal to generate code file from a sqlite database.
0
votes
0answers
30 views
dbmetal cannot find constraints in PostgreSql
I've been tring to use dbmetal on PostgreSql. Whenever there is an unique constraint or a foreign key, dbmetal just complained about not finding them, like the following:
Missing data from ...
0
votes
0answers
31 views
DBMetal 020.1 and SQlite: How are different Integer sizes handled
I'm experimenting with SQlite and DBLinq for creating my data access layer. As the SQlite documentation states, the SQLite INTEGER type is 1 to 8 bytes big, depending on the number stored. The DBMetal ...
0
votes
1answer
99 views
CodeConditionStatement and Nullable.Equals
I have to create the following VB.Net code through a C# CodeConditionStatement
If Not Nullable.Equals(field.Name, Value) Then
...
End If
What I alredy tried was
var property = new ...
0
votes
0answers
114 views
DBMetal connection string problem
I have a problem of creating the table structure from a remote mySQL database in DBMetal. My problem is that DBMetal is changing the server string into my own from my ISP. Is this a bug, or am I doing ...
0
votes
0answers
98 views
dbmetal sqlite issue
I get the error "don't know how to convert the sql type guid into a managed type" when using dbmetal to create a C# or VB class file for my sqlite3 database
Anyone know how to fix this?
0
votes
0answers
136 views
How to configure DBMetal to use libraries at given location?
Let's say I have directory C:\Tools and inside subdirectories DBLinq (with DBMetal executable and config) and Npgsql. When I run DBMetal it complains it does not see libraries for Postgresql (Npgsql). ...
0
votes
1answer
291 views
DBMetal (SQLite): “Sequence contains more than one element” with multiple foreign keys
When trying to create a C# file using DbMetal (as part of DbLinq), I get the following error:
DbMetal: Sequence contains more than one element
It's only appearing when I reference multiple ...