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
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ó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) }
…
1
vote
LINQ External Mapping to Class Library
I think the problem you might be getting is that the assembly/class library containing your classes hasn't been loaded into memory at this stage?
Try accessing a class in the library before …
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
…
3
votes
LINQ with SQLite (linqtosql)
LINQ to SQL only supports SQL Server/Compact however it is possible the SQLite people have written their own LINQ provider given the name of the assembly.
If that's the case you would be ab …
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 …
2
votes
SQL 2 LINQ query (called by databinding) completely freezing WPF application
Having a property open a database connection and run a query is not a good pattern.
A better approach would be to query a set of objects from LINQ to SQL and bind those to the WPF control …
2
votes
linqtosql will not allow updating of fields as it casts them as read only
When you select just individual fields you are creating an anonymous type on the fly that is no longer part of the ORM's change tracking/update mechanism.
You will need to change the select …
0
votes
Getting rows from a SQL table matching a dictionary using LINQ
Another option is to consider how you populate m_authors and whether you can include that in the query as a query element itself so it turns into a server-side join/subselect.
…
1
vote
Linq caching data values - major concurrency problem?
LINQ to SQL uses the identity map design pattern which means that it will always return the same instance of an object for it's given primary key (unless you turn off object tracking).
The …
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 …
