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. …
2
votes

Editing Autogenerated DMBL file for WCF Service

Setting the DBML serialization mode to unidirectional will decorate the classes and a number of the members with the required attributes however it will ignore some of the associations to avoid cir …
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. …
0
votes

How fast is LINQ?

It's worth bearing in mind that LINQ to SQL works by retrieving the object from the database first, you then apply property changes to the objects and call SubmitChanges to persist them back whereu …
1
vote

C# Retrieving correct DbConnection object by connection string

You should be able to parse out the Provider section and pass it into DbProviderFactories.GetFactory which will return a OdbcFactory, OleDbFactory or SqlClientFactory and let you then perform Creat …
0
votes

Can LINQ to SQL generated objects be decoupled?

Just copy the generated code into your own classes and switch off the code generation. The magic is in the attributes not anything else. Alternatively you can write your own plain CLR objec …
6
votes

Where are some good tutorials on writing a custom LINQ Provider?

Matt Warren (one of the primary guys behind LINQ to SQL) probably has the best series of posts over on his blog at http://blogs.msdn.com/matt …
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

Is it possible to extend Visual Studio Linq-to-Sql designer to support geometry types?

Even if you made the designer support it the runtime won't. …
1
vote

Can Linq-To-Sql be aware of similarities of two tables?

One option would be to create a view on the server that unioned the results if it's for query only. For update scenario's your more stuck as it wouldn't be possible for LINQ to SQL to know …
1
vote

Why is HasLoadedOrAssignedValue Property set to true?

The problem is something is looking at the Image property and causing it to load - perhaps even the debugger. Set a breakpoint in the Product.Image property and see what path is causing it. …
0
votes

Linq to Sql, derived to derived association

LINQ to SQL only supports table-per-heirarchy, not table-per-type. …