Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
2k views

How mature is dblinq?

Im working on an application that needs to talk to a database. The application is written in C#. Im quite taken by LINQ and auto generating classes to represent the database and its tables, so first I ...
7
votes
3answers
342 views

Why is it possible to enumerate a DbLinq query after calling Dispose() on the DataContext?

Update - The answer is apparently that DbLinq doesn't implement Dispose() properly. D'oh! The below is all sort of misleading - Bottom line: DbLinq is not (yet) equivalent to LinqToSql, as I ...
6
votes
4answers
171 views

Would an ORM have any way of determining that a SQLite column contains date-times or booleans?

I've been thinking about using SQLite for my next project, but I'm concerned that it seems to lack proper datetime and bit data types. If I use DbLinq (or some other ORM) to generate C# classes, will ...
6
votes
2answers
6k views

How do I use a boolean field in a where clause in SQLite?

It seems like a dumb question, and yet. It could be my IDE that's goofing me up. Here's the code (this is generated from DbLinq): SELECT pics$.Caption, pics$.Id, pics$.Path, pics$.Public, ...
4
votes
1answer
207 views

How to do left outer joins with DbLinq and SQLite?

I tried db.Table1.GroupJoin(db.Table2, t1 => t1.Id, t2 => t2.t1Id, (t1,g) => new { t1, g }) .Where(item => !item.g.Any()) .Select(item => item.t1); But it returned 0 ...
4
votes
5answers
237 views

How to select null values with LINQ to SQL and DbLinq?

When I bool? isApproved = null; db.Table.Where(item => item.IsApproved == isApproved).Count(); the last line value is 0. But when I db.Table.Where(item => item.IsApproved == null).Count(); ...
3
votes
1answer
92 views

Why are binary Guids different from usual representation

I have the following Guid: AAB13E97-449B-4D5B-BDE2-AC479C31B782 Using System.Guid + DbLinq + SQLite to store it the following field is added to the database. 973EB1AA-9B44-5B4D-BDE2-AC479C31B782 ...
3
votes
2answers
647 views

DBLinq not generating where clause

I'm testing out DBLinq-0.18 and DBLinq from SVN Trunk with MySQL and Postgresql. I'm only using a very simple query but on both database DBLinq is not generating a Where clause. I have confirmed this ...
2
votes
1answer
117 views

Linq-Sql Oracale object relational data type, is it possible?

I have recently been trying to set up a .Net application which will connect to an oracle database using object relational data types, I would like to do this using the Linq-Sql framework, however when ...
2
votes
1answer
460 views

Dblinq reference in ASP.NET Web Service on MonoDevelop causes xsp2 to fault

I am trying to try DBLinq with the sqlite provider inside a simple ASP.NET web service. I am also using MonoDevelop 2.4 and Mono 2.6.7, The project in monodevelop references the DbLinq.dll which ...
2
votes
1answer
133 views

problem with linq to sqlite

I am using vb.net sqlite.net and dblinq0.20.1 to search a sqlite table on a primary key field. My code looks like this Dim blb = (From d In db.Data Where d.UID = myuid Select d).Single This ...
2
votes
2answers
430 views

How do you cast a LinqToSql Table<TEntity> as a Table<IEntity> where TEntity : IEntity?

I'm trying to use DbLinq with a SQLite database, but I'm running into a problem when I try to cast an ITable as a Queryable<TEntity>. There is a known bug in DbLinq (Issue 211), which might be ...
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 ...
2
votes
3answers
281 views

.NET/C# Drizzle database client

I am planning to use Drizzle in my next C# Mono app. Since there is no C# client available for Drizzle, I thought I would have a stab at writing my own by converting the Java client, and then making ...
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
0answers
57 views

How to use functions/variables in DBLinq.MySQL

This is my query: SELECT IF(@@old_passwords, Old_Password(?), Password(?))=`password` AS pass FROM mysql.user WHERE User=? Can I translate this to Linq, or do I have to just extract the connection ...
1
vote
0answers
415 views

Monodevelop can't generate LINQ Class

I am trying to create a MySQL LINQ Class using Mono Develop's DB mapping tool, and having a problem. When I try and create the class I get the following error: Cannot create LINQ class > ...
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
265 views

Does Mono support correct handling of System.Data.Linq.Mapping.AssociationAttribute

I can't make my application to insert into a table with foreign key relation. I'm using SqLite3 & Mono 2.8. My sqlite scripts look as follows: CREATE TABLE IF NOT EXISTS appointments ( id ...
1
vote
2answers
2k views

Sortable JqGrid using LINQ to MySQL (DbLinq) and Dynamic LINQ - Orderby doesn't work

I've got problem with sorting entries in JqGrid. Orderby seem to not work. I set breakpoint in code and I noticed, that orderby doesn't change order of elements. Any idea what could be wrong? I'm ...
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.
1
vote
1answer
934 views

SqlMetal fails to create DBML from Sqlite Database

I'm trying to use the new Mono 2.6 SqlMetal tool to create the DBML file for a simple Sqlite Database. The schema is really simple as follows: CREATE TABLE Tags ( Id INTEGER PRIMARY ...
1
vote
1answer
2k views

Create Records with Linq to SQLite via DbLinq

I have (after some significant effort) gotten DbLinq working with the latest build of Mono on OS X. Has anybody successfulyl created database entities via DbLinq/Sqlite? For example, I have the ...
1
vote
3answers
860 views

DbLinq and Mono 2.4: Working Together?

Hopefully this is a silly question and there's really a simple solution somewhere out there but... Has anybody successfully gotten DbLinq to play nicely with Mono 2.4 on Mac OS X 10.5? I've got my ...
0
votes
1answer
136 views

.NET 4.0 + Linq + SQLite + DbLink - how do I make it all work together?

I'm developing (or trying to develop) a project in C# which stores data in an SQLite database. I'd like to use Linq for object-relational mapping. According to what I've read it's possible to use it ...
0
votes
0answers
46 views

dblinq System.NullReferenceException when trying to generate cs file

Ran DBMetal by following the installation wiki: http://code.google.com/p/dblinq2007/wiki/Installation I'm using the latest dblinq-0.20.1 and the target is a MySql database. Successfully got the dbml ...
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
2answers
126 views

DbLinq generic extension method - string as keyselector?

The following snippet indicates what I want: public static class DblinqExtension { public static int MaxId<T>(this DbLinq.Data.Linq.Table<T> table) where T : class { var ...
0
votes
1answer
85 views

speed difference dblinq results vs sql query in prompt

I've setup a database to be used with dblinq. CREATE TABLE 'quotes' ( 'DBDate' int(8) ...
0
votes
1answer
503 views

Code sample using DBLinq, SQLite

Would someone be able to post a small code sample that has a working connection using DBLinq, SQLite? I have been struggling to get this up and running in a VS 2010 WPF environment for 2 days now. I ...
0
votes
0answers
68 views

DBLinq error on outer join

Given 2 tables: Client(idClient, ..., idAddress) Address(idAdress, ...) i want to list all clients, but some don't have any address recorded. So i've tried the following query, with "db" being my ...
0
votes
1answer
225 views

SQLite error no such table, when using it with DBLinq in C#

I have created a database using the SQLite administrator. It contains 3 tables and the database is in the document folder. Also I have created the mapping class for Linq using DBMetal. In application ...
0
votes
0answers
104 views

mysql and dblinq deleting a record with a foreign key

I am using dblinq and Mysql in a Visual Studio MVC Project I am new to web development, and LINQ I have been trying to delete my "NavItem" objects. This however has a subNavItem entity in it. In SQL ...
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
1answer
49 views

How should I correctly compose my Linq query where the condition is set to a foreign entity

The following are sample data for the purpose of explaining this matter: tblPrimary 1, John, 2011-01-03T11:12:00z 2, John, 2011-02-04T10:54:12z tblDetail: 1, 1, 14, Dept01 2, 1, 12, Dept02 3, 2, 10, ...
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
1answer
201 views

How to include an auto generated file in a MsBuild project?

Using MsBuild 4.0 I included a pre-build event that generates one of the project source files. But it seeks for the file before it is generated: error CS1504: Source file ...
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
0answers
322 views

Using DB_LINQ for PostgreSQL and C#

Dear.. I want to use postgresql as database and when I was do google I found Db_Linq to connect postgresql as LinQ. But when I install it, I confused how to do it.. First, I download solution and ...
0
votes
2answers
249 views

MySQL timestamp to .NET timestamp

I am using DBLinq to access a MySQL DB from C# .NET 3.5 I have created the dbml file for the Visual Studio 2010 ORM, and it loads fine - however when I compile the source I am met with errors ...
0
votes
2answers
104 views

How can I find out the exact query that gets executed with LINQ to SQL in DbLinq and SQLite?

I'm using DbLinq with SQLite for a small project of mine. Is there any way to look at the actual SQL queries that get executed behind the scenes? I remember a monitoring program for SQL Server from ...
0
votes
1answer
114 views

Changing language/culture in a MySQL/Dblinq project

I'm not very familiar in programming databases, but I have a Mysql-Database which I access with Dblinq under C#. Now when I enter dates, numbers etc, the english notation is used, but my customer ...
0
votes
1answer
342 views

DBLinq for a production system?

We're working on an ASP.NET web application with C# code behind. The database is MySQL 5.1 using InnoDB. The data access layer uses ADO.NET to call stored procedures and then builds various data ...
0
votes
1answer
295 views

Object is reinserted into database immediately after delete (DbLinq)

I have a MySql database, whose general structure looks like this: Manufacturer <== ProbeDefinition <== ImagingSettings ElementSettings ====^ ^==== ProbeInstance I'm using InnoDB to allow ...
0
votes
4answers
967 views

Converting MySQL DATETIME to System.DateTime

I am using a MySQL database with DbLinq, but there is an exception being thrown: "Cannot convert mysql datetime to system.datetime" How can I resolve this issue?
0
votes
5answers
677 views

DbLinq - Cache problem

I'm using linq to sql for MySql (using DbLinq) in an ASP.NET MVC website. I have a weird caching problem. Consider the following methods in my Repository class: public IEnumerable<Message> ...
0
votes
1answer
402 views

DbLinq Problems (Keyword New or MemberInit throws exception)

I'm migrating a huge web application from SQL Server to MySql. The application uses Linq so i'm using DBLinq. Currently most things are working properly except for that on a few pages i get a strange ...
-2
votes
2answers
31 views

Is it there a DbLinq equivalent for PHP ? what about the doctrine PHP library?

I'm a dotnet developer and i also code in php. We've decided to export our ASP.NET MVC 3 project to a Php project! but the problem is that I don't want to create all classes and relationships by ...