Search Results

2
votes

Can a LINQ to SQL IsDiscriminator column NOT inherit?

The problem here is that you are trying to split your class between two tables, RootPage and Page. Unfortunately LINQ to SQL only supports single table inheritence so this would not work. …
0
votes

How to Track Queries on a Linq-to-sql DataContext

I have a post on my blog that covers sending to log files, memory, the de …
0
votes

Enabling editing of primary key field in ASP.NET Dynamic Data / LINQ to SQL

LINQ to SQL does not support changing the primary key of an entity even without using Dynamic Data. …
2
votes

Autogeneration of a DataContext designer file when using SqlMetal and Visual Studio

The designer.cs file is normally maintained automatically as you make changes to the DBML within Visual Studio. If VS isn't running when you recreate the DBML it may not know. Check that th …
0
votes

LinqToSql Producing Different Sql Queries on Different Machines for Identical Code

Sounds like the LINQ to SQL classes (DBML and/or associated code generation) between the two is not the same - specifically how the association is defined between these two tables. …
1
vote

Linq to Entities query hitting db twice

Is ent.Inspectors an IEnumerable containing two items? …
1
vote

In Memory DataContext

You can only do this if you are prepared to wrap access to the datacontext with your own interface. Then for rapid prototyping you can write your own datacontext alternative that implements this in …