KristoferA
|
Registered User
|
|
Dec 9 |
comment |
Linq to Sql case insensitive equality @Jeff, The string.equals reference was just a comparison between how L2S and L2O behaves, sorry if I wasn't clear on that point. But yes, if you would combine the two and do the evaluation on the client side as a L2O query then it would not only get all records but also send them over the wire. In other words, using the right collation is key here. The example from your reply would still be evaluated in the database, but with the extra overhead of a table scan due to the function call wrapper on the left hand side where clause predicate. |
|
Dec 9 |
answered | Linq to Sql case insensitive equality |
|
Dec 9 |
comment |
Linq to Sql case insensitive equality Case sensitivity / insensitivity is dependent on what collation you use in your database and/or the columns involved (default is set when sql server is installed, but it can be overridden in several places, down to the column level). |
|
Dec 9 |
comment |
Linq to Sql case insensitive equality Sorry, but this is bad advice. p.UserName.ToLower()=username.ToLower() will translate to a SQL query that will force a full table scan. That doesn't matter if the "people" table is small, but if it is a large table then it will not be able to use any index that may cover the 'username' column. |
|
Dec 6 |
awarded | ● Mortarboard |
|
Nov 30 |
revised |
linq to sql strange float behaviour added 487 characters in body; added 147 characters in body; added 29 characters in body |
|
Nov 30 |
accepted | linq to sql strange float behaviour |
|
Nov 30 |
answered | linq to sql strange float behaviour |
|
Nov 30 |
comment |
linq to sql strange float behaviour 1) stackoverflow.com/questions/872544/… 2) stackoverflow.com/questions/1694545/… 3) stackoverflow.com/questions/590822/… |
|
Nov 29 |
accepted | Clever tricks to find specific LINQ queries in SQL Profiler |
|
Nov 25 |
comment |
Is it easier to go from LinqToSQL to EF4.0 or EF3.5 to EF4.0? Why do you want to move away from L2S? |
|
Nov 18 |
accepted | What causes System.Drawing.Printing.PrinterSettings.InstalledPrinters to throw Win32Exception “RPC server not available”? |
|
Nov 15 |
answered | Determine the number of Linq-To-Sql queries used in processing an ASP.NET MVC URL? |
|
Nov 12 |
accepted | Visual Studio 2008 crashes when displaying XAML view. How to get more information? |
|
Nov 11 |
comment |
simple proof that GUID is not unique Guids have not been based on the mac address since 2000 or 2001. As of one of the service packs for NT4 and/or Win2k they changed the algorithm altogether. They are now generated by a random number generator, minus a few bits that identify what kind of guid it is. |
|
Nov 10 |
comment |
Sql server 2005 needs daily index defrag Do existing records get updated frequently with new start/end dates/times? Otherwise it makes no sense if you get that much fragmentation in just a day, with that many existing records and so few inserts... What's the fill factor of the index in question? |
|
Nov 10 |
comment |
Linq to SQL nvarchar problem +1.. :) here's another msdn thread, also with some alternative workarounds: social.msdn.microsoft.com/Forums/en-US/… |
|
Nov 4 |
revised |
Performance cost of creating ObjectContext in every method in Entity Framework v1 added links |
|
Nov 4 |
answered | What’s the difference between multiple where clauses and && operator in LINQ-to-SQL? |
|
Nov 4 |
answered | Identify source of linq to sql query |
|
Nov 4 |
answered | Performance cost of creating ObjectContext in every method in Entity Framework v1 |
|
Nov 2 |
answered | Linq’s InsertOnSubmit not added to changeset |
|
Nov 1 |
comment |
Get Birthday reminder Linq Query ignoring year. Large table or small table? Any query based solution will revert to table scans so I'd go for a indexed computed column db-side if you're checking frequently and/or if you're checking a large number of records... |
|
Nov 1 |
answered | Linq-2-Sql code: Does this scale? |
|
Nov 1 |
comment |
Using Linq to Sql to find ZipCodes within Radius distance That checks if it is within a square, not a radius. You need to compare the distance between lat/long pairs to get a radius... |
|
Oct 29 |
accepted | Are Linq to sql objects serializable for session state? |
|
Oct 29 |
answered | Are Linq to sql objects serializable for session state? |
|
Oct 28 |
comment |
Generation custom files from dbml file? No, then you need to switch out the code generator as others have mentioned. Take a look at Damien Guard's T4 templates: l2st4.codeplex.com |
|
Oct 28 |
answered | Generation custom files from dbml file? |
|
Oct 28 |
comment |
Weird problem with my Linq to Sql query and manually adding some JOIN statements. Nope, a query can join to the same table multiple times. The first query has one explicit join (a) and one implicit join (through the q.Bar.SomeOtherField reference). If it tried to automatically 'map' joins, all kinds of funny side effects could occur. |
|
Oct 28 |
answered | Weird problem with my Linq to Sql query and manually adding some JOIN statements. |
|
Oct 28 |
comment |
How do you save a Linq object if you don’t have its data context? Isn't it a bit unnecessary to do a second db roundtrip? |
|
Oct 28 |
comment |
How do you save a Linq object if you don’t have its data context? @Jacob Umm, refresh does a new db roundtrip. That is a tad more expensive that just serializing and deserializing... |
|
Oct 27 |
comment |
How do you save a Linq object if you don’t have its data context? thanks :) and I'm happy to hear that it worked out |
|
Oct 27 |
comment |
How do you save a Linq object if you don’t have its data context? Are you changing the value of a foreign key scalar value field? If so, you need to null out the corresponding association (nav. property) to not have the association and the fk scalar value conflict each other... |
|
Oct 27 |
comment |
Why does Visual Studio 2010 have rendering problems in VMware? WPF is probably doing stuff that is not supported by the VMware graphics driver... |
|
Oct 27 |
answered | Problem in LINQtoSQL with dual schema in Database |
|
Oct 27 |
comment |
XMl Serialization of Linq-to-Sql objects? +1 Yes, use the DataContractSerializer... sample: social.msdn.microsoft.com/Forums/en-US/… |
|
Oct 27 |
comment |
Syntax error with left join on Linq query with a where clause Jesus. Line breaks? |
|
Oct 27 |
comment |
SQLServer Query optimization question ...oh, and forgot to add... If a query does not perform good enough, find the cause of the performance problem first. Then optimize. Optimizing in the blind is just a waste of time. If you can include [a link to] the execution plan and I/O stats for the query that would be equally helpful. |
|
Oct 27 |
comment |
SQLServer Query optimization question If you include the underlying schema (tables and indexes on them) together with the original Linq query (or queries), I'm sure it can be fixed. Doesn't look like there is anything unusual in it so if it has a performance problem it can be fixed without resorting to stored procs. |
|
Oct 25 |
revised |
Challenge: Getting Linq-to-Entities to generate decent SQL without unnecessary joins added 350 characters in body; edited tags; added 31 characters in body; added 16 characters in body |
|
Oct 25 |
accepted | Mixing System.Transactions with SqlTransactions |
|
Oct 25 |
answered | Mixing System.Transactions with SqlTransactions |
|
Oct 23 |
answered | How do you save a Linq object if you don’t have its data context? |
|
Oct 23 |
comment |
Linq-To-Sql issue with datetime? Ok, I thought the problem was with a select statement. If in the concurrency check where clause criteria for an update statement then turning off update checks for those columns (as in your answer) or switching to use a timestamp for update concurrency checks is probably the best forward... |
|
Oct 23 |
comment |
Linq-To-Sql issue with datetime? The above is a linq to sql where clause. |
|
Oct 23 |
answered | Linq-To-Sql issue with datetime? |
|
Oct 22 |
accepted | LinqToSql giving ‘Specified cast is not valid’ |
|
Oct 22 |
comment |
LINQ to objects vs for each - difference in execution timings You're welcome. Either way, the loop version will beat the L2S version performance wise (in the current framework version*) if you break out of both loops when you have found what you're looking for. But the linq version is nicer from a programming perspective; both to type and read. * = maybe they will borrow ideas from the relational db side in future versions, so that L2O queries can do more complex joins, optimizations etc... |
