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. …
3
votes
How do you extend Linq to SQL?
The ability to change the underlying provider and thus modify the SQL did not make the final cut in LINQ to SQL.
…
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 …
2
votes
How do I modify a ReadOnly Linq property
Set the existing TotalLogins property as either private or protected and remove the readonly attribute. You may also want to rename it e.g. InternalTotalLogins.
Then create a new property b …
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
Attaching an ID/Label to LINQ to SQL generated code?
There is no public way to modify the underlying SQL that LINQ to SQL generates to implement such a tagging facility. You could implement the Log property in such a way it writes out a text log fil …
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 …
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 …
1
vote
¿Cómo programar las extensiones Partial que Linq to SQL autogenera?
If you want to implement this method but not do the update yourself you make the method call ExecuteDynamicUpdate(item);
Likewise ExecuteDynamicDelete and ExecuteDynamicInsert for DeleteMyT …
4
votes
How do I get the MAX row with a GROUP BY in LINQ query?
var q = from s in db.Serials
group s by s.Serial_Number into g
select new {Serial_Number = g.Key, MaxUid = g.Group.Max(s => s.uid) }
…
0
votes
How can I wrap a transaction around Membership.CreateUser?
You can set the Transaction property of the DataContext to make it participate in a transaction you already have.
…
1
vote
Linq to SQL: select optimization
If you have columns that are very large such as binaries and images then it can make a significant difference which is why LINQ to SQL allows you to specify delay loading for certain columns so tha …
3
votes
Cross apply in Linq
The only way to use it would be to wrap the above code in a stored procedure and wrap it with LINQ to SQL.
[)amien
…
1
vote
Extend a LINQ entity-class with constructor methods and make that entity-class inherit from it’s DataContext class
Inheriting an entity from a data context is a bad idea. They are two discrete objects and are designed to operate that way. Doing this will cause all sorts of issues least of all problems with tryi …
