User KristoferA - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T03:19:53Zhttp://stackoverflow.com/feeds/user/11241http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1853739/linq-to-sql-case-insensitive-equality/1872746#18727461Answer by KristoferA for Linq to Sql case insensitive equalityKristoferA2009-12-09T09:48:22Z2009-12-09T09:48:22Z<p>Your sample query will translate to something roughly like this:</p>
<p>select [t0].col1, [t0].col2, ..., [t0].coln
from [schema].[People]
where [t0].UserName = @p0</p>
<p>...the value in the username variable will be passed in the @p0 sql variable. As such, case sensitivity, accent sensitivity etc is controlled by the collation you have set up your SQL Server instance/db/table/column to use. If not specified anywhere else, the DBs or DB instance's default collation is used, but collation can be specified all the way down to the column level.</p>
<p>Most people run SQL Server with case insensitive (CI) collations but as I have said above, it can be overridden in the DB so you just need to check what collation you have there.</p>
<p>This is in contrast to if you do the same thing as a L2O (linq to objects) query, in that case case-sensitivity is the default and you would have to make it case insensitive by using the string.equals override that allow you to specify culture and/or case insensitivity...</p>
http://stackoverflow.com/questions/1817516/linq-to-sql-strange-float-behaviour/1817557#18175571Answer by KristoferA for linq to sql strange float behaviourKristoferA2009-11-30T02:09:34Z2009-11-30T02:16:11Z<p>Is theCategorie.TaxRate a float? If so, you're assigning a float into a double. The extra decimals is due to higher precision in the double, so the double's nearest to a float's 19.6...</p>
<p>The output of this illustrates it:</p>
<pre><code>float f = 19.6F;
double d = f;
double d2 = 19.6D;
System.Diagnostics.Debug.WriteLine("Float: " + f.ToString());
System.Diagnostics.Debug.WriteLine("Double from float: " + d.ToString());
System.Diagnostics.Debug.WriteLine("Double: " + d2.ToString());
</code></pre>
<p>As a workaround, you can either change the type of theCategorie.TaxRate to a double, or if you want to keep it as a float you can cast & round it when calling the stored proc:</p>
<pre><code>DataContext.UpdateCategory(theCategorie.Code, theCategorie.Description, Math.Round((double)theCategorie.TaxRate, 6), theCategorie.TaxCode);
</code></pre>
http://stackoverflow.com/questions/1734591/determine-the-number-of-linq-to-sql-queries-used-in-processing-an-asp-net-mvc-url/1736514#17365142Answer by KristoferA for Determine the number of Linq-To-Sql queries used in processing an ASP.NET MVC URL?KristoferA2009-11-15T03:53:43Z2009-11-15T03:53:43Z<p>You may want to try out my Linq-to-SQL profiler. You can read more, download it and get a free 45-day trial license from <a href="http://www.huagati.com/L2SProfiler/" rel="nofollow">http://www.huagati.com/L2SProfiler/</a></p>
<p>It give you not only what queries were executed, but what code triggered them, what the I/O cost, db-side timings, even the db side execution plan. You can use it both during development and in production environments to log and profile L2S queries...</p>
<p>Also see this blog post:
<a href="http://huagati.blogspot.com/2009/06/profiling-linq-to-sql-applications.html" rel="nofollow">http://huagati.blogspot.com/2009/06/profiling-linq-to-sql-applications.html</a></p>
http://stackoverflow.com/questions/1671334/performance-cost-of-creating-objectcontext-in-every-method-in-entity-framework-v1/1671346#16713460Answer by KristoferA for Performance cost of creating ObjectContext in every method in Entity Framework v1KristoferA2009-11-04T02:13:22Z2009-11-04T15:48:05Z<p>Is the underlying model small or large, simple or complex? The cost of initializing and using a new objectcontext grows with the size and complexity of the model. If you have a handful of entities, it is usually neglectable. If you have hundreds of entities then it can be significant.</p>
<p>See:<br>
<a href="http://oakleafblog.blogspot.com/2008/08/entity-framework-instantiation-times.html" rel="nofollow">http://oakleafblog.blogspot.com/2008/08/entity-framework-instantiation-times.html</a><br>
and<br>
<a href="http://blogs.msdn.com/adonet/archive/2008/06/20/how-to-use-a-t4-template-for-view-generation.aspx" rel="nofollow">http://blogs.msdn.com/adonet/archive/2008/06/20/how-to-use-a-t4-template-for-view-generation.aspx</a></p>
http://stackoverflow.com/questions/1673184/whats-the-difference-between-multiple-where-clauses-and-operator-in-linq-to-s/1673252#16732522Answer by KristoferA for What's the difference between multiple where clauses and && operator in LINQ-to-SQL?KristoferA2009-11-04T11:36:40Z2009-11-04T11:36:40Z<p>DB side they are identical. It is just a side effect of Linq-to-SQL being composable (i.e. you can start off with one query and then add additional criteria to it, change projections etc).</p>
http://stackoverflow.com/questions/1650387/identify-source-of-linq-to-sql-query/1671879#16718791Answer by KristoferA for Identify source of linq to sql queryKristoferA2009-11-04T05:45:50Z2009-11-04T05:45:50Z<p>You might find my <a href="http://www.huagati.com/L2SProfiler/" rel="nofollow">Linq-to-SQL query profiler</a> useful; it allows you to log queries together with stack trace and db-side I/O, timings, execution plans, and other details that can be used to pinpoint both what effect the query had and where it came from (in code, what user action(s) and or calls triggered it etc).</p>
<p>It has a number of <a href="http://www.huagati.com/L2SProfiler/runtimehelp/html/N%5FHuagati%5FLinqToSQL%5FProfiler%5FFilters.htm" rel="nofollow">filter options</a> that you can control from within your own code, so you can set it up to catch queries that fulfill specific criteria only. E.g. queries that: are <a href="http://www.huagati.com/L2SProfiler/runtimehelp/html/T%5FHuagati%5FLinqToSQL%5FProfiler%5FFilters%5FPageReadFilter.htm" rel="nofollow">expensive I/O-wise</a>, has <a href="http://www.huagati.com/L2SProfiler/runtimehelp/html/T%5FHuagati%5FLinqToSQL%5FProfiler%5FFilters%5FExecutionTimeFilter.htm" rel="nofollow">long execution time</a>, does <a href="http://www.huagati.com/L2SProfiler/runtimehelp/html/T%5FHuagati%5FLinqToSQL%5FProfiler%5FFilters%5FTableScanFilter.htm" rel="nofollow">table scans</a>, <a href="http://www.huagati.com/L2SProfiler/runtimehelp/html/T%5FHuagati%5FLinqToSQL%5FProfiler%5FFilters%5FTableFilter.htm" rel="nofollow">hits specific tables</a>, even your own <a href="http://www.huagati.com/L2SProfiler/runtimehelp/html/T%5FHuagati%5FLinqToSQL%5FProfiler%5FFilters%5FProfilerFilter.htm" rel="nofollow">custom filters</a>, etc. It is designed for runtime profiling, so you can distribute the logging component with your apps and switch it on as necessary in prod environments.</p>
<p>I have posted a short intro to it here:
<a href="http://huagati.blogspot.com/2009/06/profiling-linq-to-sql-applications.html" rel="nofollow">http://huagati.blogspot.com/2009/06/profiling-linq-to-sql-applications.html</a></p>
<p>And you can download the profiler and get a free 45-day trial license from:
<a href="http://www.huagati.com/L2SProfiler/" rel="nofollow">http://www.huagati.com/L2SProfiler/</a></p>
http://stackoverflow.com/questions/1660647/linqs-insertonsubmit-not-added-to-changeset/1660711#16607110Answer by KristoferA for Linq's InsertOnSubmit not added to changesetKristoferA2009-11-02T11:25:02Z2009-11-02T11:25:02Z<p>No primary key defined in the L2S model? Check so at least one column has the "primary key" attribute set to true.</p>
http://stackoverflow.com/questions/1650971/linq-2-sql-code-does-this-scale/1656885#16568850Answer by KristoferA for Linq-2-Sql code: Does this scale?KristoferA2009-11-01T11:05:03Z2009-11-01T11:05:03Z<p>Depends on what you mean with 'scales'. DB side this code has the potential of causing trouble if you are dealing with large tables; SQL Server's optimizer is really poor at handling the "or" operator in where clause predicates and tend to fall back to table scans if there are multiple of them. I'd go for a couple of .Union calls instead to avoid the possibility that SQL falls back to table scans just because of the ||'s.</p>
<p>If you can share more details about the underlying tables and the data in them, it will be easier to give a more detailed answer...</p>
http://stackoverflow.com/questions/1643793/are-linq-to-sql-objects-serializable-for-session-state/1644740#16447401Answer by KristoferA for Are Linq to sql objects serializable for session state?KristoferA2009-10-29T15:57:39Z2009-10-29T15:57:39Z<p>Serialize them using the datacontractserializer before storing in session or anything else that may want to serialize... <a href="http://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/81c84ff4-059b-474f-9c69-b8c59027fd48" rel="nofollow">Recently discussed here</a>:</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/81c84ff4-059b-474f-9c69-b8c59027fd48" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/81c84ff4-059b-474f-9c69-b8c59027fd48</a></p>
http://stackoverflow.com/questions/1636825/generation-custom-files-from-dbml-file/1637079#16370790Answer by KristoferA for Generation custom files from dbml file?KristoferA2009-10-28T12:51:06Z2009-10-28T12:51:06Z<p>If you want the datacontract and datamember attributes to be added, simply change the "Serialization Mode" property in the L2S designer's datacontext properties from "None" to "Unidirectional". All entity classes will then be datacontracts, and their members will be datamembers...</p>
http://stackoverflow.com/questions/1635093/weird-problem-with-my-linq-to-sql-query-and-manually-adding-some-join-statements/1635339#16353390Answer by KristoferA for Weird problem with my Linq to Sql query and manually adding some JOIN statements.KristoferA2009-10-28T05:27:39Z2009-10-28T05:27:39Z<p>With the sample query you have posted above it should not do any joins besides a single join between Foo and Bar.</p>
<p>Are you by any chance doing something along the lines of:</p>
<pre><code>from q in db.Foo
join a in db.Bar on q.Id equals a.Id
select new { q.SomeField, q.Bar.SomeOtherField }
</code></pre>
<p>If so, change that to:</p>
<pre><code>from q in db.Foo
join a in db.Bar on q.Id equals a.Id
select new { q.SomeField, a.SomeOtherField }
</code></pre>
http://stackoverflow.com/questions/1630165/problem-in-linqtosql-with-dual-schema-in-database/1630242#16302420Answer by KristoferA for Problem in LINQtoSQL with dual schema in DatabaseKristoferA2009-10-27T11:38:56Z2009-10-27T11:38:56Z<p>Yes, you can rename the classes in the designer to HREmployees and ProdEmployees (or whatever you want to call them)</p>
http://stackoverflow.com/questions/924629/challenge-getting-linq-to-entities-to-generate-decent-sql-without-unnecessary-jo2 Challenge: Getting Linq-to-Entities to generate decent SQL without unnecessary joinsKristoferA2009-05-29T06:14:19Z2009-10-25T11:52:42Z
<p>I recently came across a question in the Entity Framework forum on msdn:
<a href="http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/bb72fae4-0709-48f2-8f85-31d0b6a85f68" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/bb72fae4-0709-48f2-8f85-31d0b6a85f68</a></p>
<p>The person who asked the question tried to do a relatively simple query, involving two tables, a grouping, order by, and an aggregation using Linq-to-Entities. A pretty straightforward Linq query, and straightforward to do in SQL as well - the kind of stuff people try to do every day.</p>
<p>However, when using Linq-to-Entities the outcome is a complex query with lots of unnecessary joins etc. I tried it and wasn't able to get Linq-to-Entities to generate a decent SQL query from it if using just pure Linq against the EF entities.</p>
<p>Having seen a fair share of monster queries from EF I thought maybe the OP (and me, <a href="http://stackoverflow.com/questions/767049/linq-to-entities-excessive-joins-in-generated-sql">and others</a>) are doing something wrong. Maybe there is a better way to do this?</p>
<p>So here's my challenge: using <a href="http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/bb72fae4-0709-48f2-8f85-31d0b6a85f68" rel="nofollow">the example from the EF forum</a> and using just Linq-to-Entities against the two entities, is it possible to get EF to generate a SQL query without unnecessary joins and other complexities?</p>
<p>I'd like to see EF generate something a little bit closer to what Linq-to-SQL does for the same kind of queries, while still using Linq against a EF model.</p>
<p><strong>Restrictions:</strong> use EFv1 .net 3.5 SP1 or EFv4 (beta 1 is part of the VS2010/.net4 beta available for download from Microsoft). No CSDL->SSDL mapping tricks, model 'definingqueries', stored procs, db-side functions, or views allowed. Just plain 1:1 mapping between the model and the db and a pure L2E query that does what the original thread on MSDN asked. An association must exist between the two entities (i.e. my "workaround #1" answer to the original thread is not a valid workaround)</p>
<p><strong>Update:</strong> 500pt bounty added. Have fun.</p>
<p><strong>Update:</strong> As mentioned above, a solution that uses EFv4 / .net 4 (β1 or later) is of course eligible for the bounty. If you're using .net 4 post β1, please include build number (e.g. 4.0.20605), the L2E query you used, and the SQL it generated and sent to the DB.</p>
<p><strong>Update:</strong> This issue has been fixed in VS2010 / .net 4 beta 2. Although the generated SQL still has a couple of [relatively harmless] extra levels of nesting, it doesn't do any of the nutty stuff it used to. The final execution plan after SQL Server's optimizer has had a go at it is now as good as it can be. +++ for the dudes and dudettes responsible for the SQL generating part of EFv4...</p>
http://stackoverflow.com/questions/1620351/mixing-system-transactions-with-sqltransactions/1620379#16203793Answer by KristoferA for Mixing System.Transactions with SqlTransactionsKristoferA2009-10-25T08:39:33Z2009-10-25T08:39:33Z<p>Works just fine, if your inner transactions within the stored procs are committed everything will commit. If one of them roll back then everything within the outer transcation will roll back. Pure magic. :)</p>
http://stackoverflow.com/questions/1594970/how-do-you-save-a-linq-object-if-you-dont-have-its-data-context/1613204#16132040Answer by KristoferA for How do you save a Linq object if you don't have its data context?KristoferA2009-10-23T12:46:25Z2009-10-23T12:46:25Z<p>The "<em>An entity can only be attached as modified without original state if it declares a version member</em>" error when attaching an entitity that has a timestamp member will (should) only occur if the entity has not travelled 'over the wire' (read: been serialized and deserialized again). If you're testing with a local test app that is not using WCF or something else that will result in the entities being serialized and deserialized then they will still keep references to the original datacontext through entitysets/entityrefs (associations/nav. properties).</p>
<p>If this is the case, you can work around it by serializing and deserializing it locally before calling the datacontext's .Attach method. E.g.:</p>
<pre><code>internal static T CloneEntity<T>(T originalEntity)
{
Type entityType = typeof(T);
DataContractSerializer ser =
new DataContractSerializer(entityType);
using (MemoryStream ms = new MemoryStream())
{
ser.WriteObject(ms, originalEntity);
ms.Position = 0;
return (T)ser.ReadObject(ms);
}
}
</code></pre>
<p>Alternatively you can detach it by setting all entitysets/entityrefs to null, but that is more error prone so although a bit more expensive I just use the DataContractSerializer method above whenever I want to simulate n-tier behavior locally...</p>
<p>(related thread: <a href="http://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/eeeee9ae-fafb-4627-aa2e-e30570f637ba" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/eeeee9ae-fafb-4627-aa2e-e30570f637ba</a> )</p>
http://stackoverflow.com/questions/1612358/linq-to-sql-issue-with-datetime/1612383#16123830Answer by KristoferA for Linq-To-Sql issue with datetime?KristoferA2009-10-23T09:42:13Z2009-10-23T09:42:13Z<pre><code>where foo.SignupDate >= signUpDate
&& foo.SignUpDate < signUpDate.AddSeconds(1)
&& foo.LastActivityDate >= lastActivityDate
&& foo.LastActivityDate < lastActivityDate.AddSeconds(1)
&& foo.LastLoginDate >= lastActivityDate
&& foo.LastLoginDate < lastActivityDate.AddSeconds(1)
</code></pre>
http://stackoverflow.com/questions/1599725/which-mobile-programming-environment-do-you-recommend-for-a-startup-to-target/1607427#16074271Answer by KristoferA for Which mobile programming environment do you recommend for a startup to target?KristoferA2009-10-22T14:00:46Z2009-10-22T14:00:46Z<p>Windows mobile.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
Bwahahahahaha. </p>
http://stackoverflow.com/questions/1601292/linqtosql-giving-specified-cast-is-not-valid/1606241#16062411Answer by KristoferA for LinqToSql giving 'Specified cast is not valid'KristoferA2009-10-22T10:10:05Z2009-10-22T10:10:05Z<p>That is usually caused by a data type mismatch, e.g. if the stored procedure returns a int and that is mapped to a string, or if the stored proc return a varchar(1) and that is mapped to a System.Char.</p>
http://stackoverflow.com/questions/1605215/linq-to-objects-vs-for-each-difference-in-execution-timings/1605243#16052432Answer by KristoferA for LINQ to objects vs for each - difference in execution timingsKristoferA2009-10-22T05:49:22Z2009-10-22T05:49:22Z<pre><code>(from acct in acctTest
where acct.AccountId == acctID
select acct.CustomerColl)
.Where(c => c.CustomerId == custId)
.Select(cn => cn.CustomerName)
.FirstOrDefault()
</code></pre>
http://stackoverflow.com/questions/783631/will-vb-net-be-phased-out/1598589#15985890Answer by KristoferA for Will VB.NET be phased out?KristoferA2009-10-21T03:30:06Z2009-10-21T03:30:06Z<p>VB caught a slow but terminal illness when they released .net. Classic VB used to be a easy-to-get-started-with language compared to the other dev tools for Windows.</p>
<p>VB.net in contrast is more convoluted and complex than C#, so I think the only reason it still exist is because:</p>
<p>a) there's lot of old classic VB code out there that has been, or will be migrated to VB.NET. As long as that market is there MSFT will maintain it; killing it too early could lose some of that existing market to competing platforms. Wouldn't want that to happen, right?</p>
<p>b) there are a lot of VB programmers who have used VB for years, feel comfortable with it, have not yet taken the plunge into C#. However, the 'getting started' appeal that was there in classic VB is no longer there so I think C# is a lot more attractive to new programmers, and to those who have a genuine interest in programming besides just caching their paycheck. </p>
<p>Only a matter of time until VB.NET will go COBOL on itself IMO, but how long? 2/3/5/10/15/nn years?</p>
http://stackoverflow.com/questions/1585894/detaching-a-query-in-linq-to-sql/1586635#15866350Answer by KristoferA for Detaching a Query in Linq to SqlKristoferA2009-10-19T01:45:06Z2009-10-20T09:41:33Z<p>Do you mean you want to attach a query (an IQueryable) to a new datacontext instance? Or a completely different datacontext?</p>
<p>If so, you could take the query, replace all references to the DC instance in the query's expression tree (query.expression) using something like this:<br />
<a href="http://huagati.blogspot.com/2009/10/code-sample-search-and-replace-in-linq.html" rel="nofollow">http://huagati.blogspot.com/2009/10/code-sample-search-and-replace-in-linq.html</a></p>
<p>...and then create a new query using IQueryProvider.CreateQuery. For the last step you can get hold of the IQueryProvider from a 'dummy query' against the new DC, e.g.:</p>
<pre><code>IQueryable<Foo> dummyQuery = dc.Foos;
IQueryProvider prov = dummyQuery.Provider;
</code></pre>
<p><hr /></p>
<p><strong>Update:</strong></p>
<p>After the clarification of the question, I think what you're maybe looking for is having your queries wrapped in iterator functions.</p>
<p>E.g.:</p>
<pre><code>public IEnumerable<SomeEntity> SomeEntityQuery()
{
//run the query
List<SomeEntity> result = null;
using (SomeDataContext dc = new SomeDataContext())
{
result = (from se in dc.SomeEntity where ... select se).ToList();
}
//and return the query results
foreach (SomeEntity se in result)
{
yield return se;
}
}
</code></pre>
<p>...and then:</p>
<pre><code>//the query will not run when this assignment takes place...
IEnumerable<SomeEntity> someEntityList = SomeEntityQuery();
//but when we start enumerating the results, the SomeEntityQuery method
// will execute the query and then begin returning the results...
foreach (SomeEntity se in someEntityList)
{
}
</code></pre>
http://stackoverflow.com/questions/1590149/did-you-ever-get-into-trouble-because-of-using-or-creating-odd-named-software/1593309#15933091Answer by KristoferA for Did you ever get into trouble because of using or creating odd-named software?KristoferA2009-10-20T08:56:48Z2009-10-20T09:02:30Z<p>I once got crap for naming a control "OHPaparazzi"; it was a user control whose only function was to switch on a web cam and take snapshots of users without giving any feedback to the user. I thought it was a fitting name given the stealth nature of its' behavior, but the chief namespace officer disagreed. He argued that <a href="http://mw1.m-w.com/dictionary/paparazzi" rel="nofollow">Paparazzi</a> is not an english word, so I had to change the name... :) ...the moral aspects of taking photos of users without letting them know was - oddly enough - for some reason nothing they were willing to discuss... </p>
<p>Oh, and in the same app/project I also implemented a user control called the 'nurse browser'. I never got in trouble for that one, and I don't think anyone else did either... ...but certainly could have... :)</p>
http://stackoverflow.com/questions/1591822/linq-to-sql-multiple-data-context-in-same-transaction/1592133#15921332Answer by KristoferA for Linq to sql multiple data context in same transactionKristoferA2009-10-20T02:17:43Z2009-10-20T02:17:43Z<p>TransactionScope can be used with multiple DataContexts, but as soon as more than one connection is involved the transaction is escalated to a MSDTC/XA/distributed transaction. For that to work you need to have MSDTC running on both the system where you code runs and on the database server.</p>
<p>Alternatively, you can avoid escalation to a distributed transaction if you create an explicit connection within the transactionscope and pass that to your datacontexts; that way the TransactionScope will not escalate to a distributed transaction, and won't rely on MSDTC...</p>
http://stackoverflow.com/questions/1587125/internet-explorer-loading-bar-5-57mb-page/1587223#15872231Answer by KristoferA for Internet Explorer, Loading Bar, 5.57MB pageKristoferA2009-10-19T06:27:56Z2009-10-19T06:27:56Z<p>That is a bug with animated gifs in IE. Change from an animated gif to use javascript to animate the loader thing... (e.g. by swapping images or similar)</p>
http://stackoverflow.com/questions/1583805/should-i-use-linq-to-sql-for-a-new-project-since-its-future-is-in-question/1583855#15838554Answer by KristoferA for Should I use Linq to SQL for a new project since it's future is in question?KristoferA2009-10-18T02:46:54Z2009-10-18T02:46:54Z<p>The "...future in question..." thing is just fed by those trying to push competing OR mappers, most who are still far behind Linq-to-SQL both in terms of LINQ support and when it comes to generating good and effective SQL queries.</p>
<p>Anders Hejlsberg was quoted by <a href="http://reddevnews.com/blogs/weblog.aspx?blog=3016" rel="nofollow">Redmond Developer News</a> saying "<em>LINQ to SQL is not dead. I can assure you, it is not dead. Nothing ever goes away. We have never done that and we never will.</em>"</p>
<p>Scott Guthrie recently <a href="http://twitter.com/scottgu/status/4766070825" rel="nofollow">tweeted</a> "<em>LINQ to SQL is fully supported in VS10/.NET 4.0. Here is a list of improvements in it: <a href="http://tinyurl.com/linq2SinDev10" rel="nofollow">tinyurl.com/linq2SinDev10</a></em>"</p>
<p>MSFT have fixed a <a href="http://tinyurl.com/linq2SinDev10" rel="nofollow">decent amount</a> of minor L2S bugs in .net 4.0. There are also a number of hotfixes for L2S 3.5 available through MSFT support.</p>
<p>Yes, they have apparently spent a lot more time on EF in .net 4, but that is because EF <em>needs it</em>. L2S works, and it works great already so as long as they fix those kind of minor issues I'm sure it will stay around and remain popular for a long time ahead... ...and I'm sure that EF will be a worthy competitor once EF4 is released but until then I'm sticking to L2S in any code that is about to hit production.</p>
<p>Michael G's reply is great advice; separate your layers and it will be a breeze to switch to another OR mapper in the future if you need or want to...</p>
http://stackoverflow.com/questions/1569292/is-there-a-way-to-do-a-prepared-statement-in-linq2sql-using-a-stored-proc/1569843#15698430Answer by KristoferA for Is there a way to do a prepared statement in linq2sql using a stored proc?KristoferA2009-10-15T01:24:57Z2009-10-15T01:30:41Z<p>Stored procedures are compiled when executed, and the execution plan is then stored in an execution plan cache that SQL Server maintains. Unless there is some important change to the underlying tables (e.g. updated statistics, new indexes, manual request for recompilation etc) it will use the stored execution plan.</p>
<p>Linq-to-SQL ad-hoc queries use the sp_executesql stored procedure. The result of this is that they too are stored in SQL Server's execution plan cache, so running the same query* multiple times will only lead to SQL Server compiling it once and thereafter using the cached plan. (* = same query as in same number and same type of parameters)</p>
<p>That said, Linq-to-SQL also does a certain amount of work when translating the linq expression trees into SQL queries. The overhead of this varies but for very complex queries that are executed frequently this can be noticable.</p>
<p>To lower the cost of repeatedly translating the same query to SQL, Linq-to-SQL has something called <a href="http://msdn.microsoft.com/en-us/library/system.data.linq.compiledquery.aspx" rel="nofollow">CompiledQuery</a>. Unfortunately the CompiledQuery class only support up to four parameters per query so for complex queries [where it would have a greater impact than it does on very simple queries] it is usually ruled out as an option due to this limitation. It is also worth noting that CompiledQuery SQL queries do not take advantage of L2S client-side predicate elimination so if you use the CompiledQuery class it is worth comparing the SQL-server-side cost (esp. in terms of I/O) if you have any where clause predicates that could potentially be eliminated client side...</p>
http://stackoverflow.com/questions/1566045/why-does-my-picturebox-loading-routine-leak-memory/1566068#15660681Answer by KristoferA for Why does my PictureBox loading routine leak memory?KristoferA2009-10-14T12:56:37Z2009-10-14T12:56:37Z<p>two words: garbage collection</p>
http://stackoverflow.com/questions/1560513/can-you-convince-a-datacontext-to-treat-a-column-as-always-dirty/1563751#15637511Answer by KristoferA for Can you convince a DataContext to treat a column as always dirty?KristoferA2009-10-14T00:56:42Z2009-10-14T02:45:43Z<p>If you want to go down the [dirty] reflection route, you could try something along the lines of:</p>
<p>1) Override SubmitChanges<br />
2) Go through the change set<br />
3) Use reflection to get hold of the change tracker for each updated object (see <a href="http://stackoverflow.com/questions/1321255/whats-the-cleanest-way-to-make-a-linq-object-dirty">http://stackoverflow.com/questions/1321255/whats-the-cleanest-way-to-make-a-linq-object-dirty</a> )<br />
4) Make the column dirty (there's a dirtyMemberCache field in the StandardTrackedObject class)</p>
http://stackoverflow.com/questions/1537805/linq-to-sql-how-to-inner-join-tables-from-different-data-context/1538890#15388900Answer by KristoferA for Linq to SQL - How to inner join tables from different Data Context?KristoferA2009-10-08T16:19:30Z2009-10-08T17:02:59Z<p>If your code does something along the lines of:</p>
<pre><code>from a in dc1.TableA
join b in dc2.TableB on a.id equals b.id
select new { a, b }
</code></pre>
<p>...just change it to:</p>
<pre><code>from a in dc1.TableA
join b in dc1.GetTable<TableB>() on a.id equals b.id
select new { a, b }
</code></pre>
<p>The L2S datacontext uses the attributes on the class, so if you use GetTable on another datacontext than the one the table is attached to it will just pick up the table, column, etc attributes from the class def and use it as if it was part of the DC you're using in the query...</p>
http://stackoverflow.com/questions/1533911/returning-every-other-record-with-linq/1535100#15351002Answer by KristoferA for Returning Every Other Record with LINQKristoferA2009-10-08T01:15:50Z2009-10-08T01:51:20Z<p>What columns do you have in your table? If you for example have a int identity primary key column you could use that... </p>
<pre><code>from mt in dc.MyTable
where mt.ID %2 == 0
select mt
</code></pre>
<p>...or...</p>
<pre><code>where mt.SomeDataTime.Millisecond % 2 == 0
</code></pre>
<p>...that said, <em>where</em> are you trying to reduce load?</p>
<p>The T-SQL in your post, as well as the two solutions I have mentioned will all force full table scans, so if your table is large-ish then it would be better you can reduce records based on something indexed (and where the where clause predicate can actually use the index)...</p>
http://stackoverflow.com/questions/1853739/linq-to-sql-case-insensitive-equality/1872746#1872746Comment by KristoferA on Linq to Sql case insensitive equalityKristoferA2009-12-09T23:59:10Z2009-12-09T23:59:10Z@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. http://stackoverflow.com/questions/1853739/linq-to-sql-case-insensitive-equality/1853799#1853799Comment by KristoferA on Linq to Sql case insensitive equalityKristoferA2009-12-09T09:43:25Z2009-12-09T09:43:25ZCase 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).http://stackoverflow.com/questions/1853739/linq-to-sql-case-insensitive-equality/1854184#1854184Comment by KristoferA on Linq to Sql case insensitive equalityKristoferA2009-12-09T09:42:06Z2009-12-09T09:42:06ZSorry, 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.http://stackoverflow.com/questions/1817516/linq-to-sql-strange-float-behaviourComment by KristoferA on linq to sql strange float behaviourKristoferA2009-11-30T02:04:44Z2009-11-30T02:04:44Z1) <a href="http://stackoverflow.com/questions/872544/precision-of-floating-point" rel="nofollow" title="precision of floating point">stackoverflow.com/questions/872544/…</a> 2) <a href="http://stackoverflow.com/questions/1694545/floating-point-again" rel="nofollow" title="floating point again">stackoverflow.com/questions/1694545/…</a> 3) <a href="http://stackoverflow.com/questions/590822/dealing-with-accuracy-problems-in-floating-point-numbers" rel="nofollow" title="dealing with accuracy problems in floating point numbers">stackoverflow.com/questions/590822/…</a>http://stackoverflow.com/questions/1787645/is-it-easier-to-go-from-linqtosql-to-ef4-0-or-ef3-5-to-ef4-0Comment by KristoferA on Is it easier to go from LinqToSQL to EF4.0 or EF3.5 to EF4.0?KristoferA2009-11-25T15:35:05Z2009-11-25T15:35:05ZWhy do you want to move away from L2S?http://stackoverflow.com/questions/1705008/simple-proof-that-guid-is-not-unique/1709060#1709060Comment by KristoferA on simple proof that GUID is not uniqueKristoferA2009-11-11T04:05:16Z2009-11-11T04:05:16ZGuids 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.http://stackoverflow.com/questions/1706734/sql-server-2005-needs-daily-index-defragComment by KristoferA on Sql server 2005 needs daily index defragKristoferA2009-11-10T09:54:16Z2009-11-10T09:54:16ZDo 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?http://stackoverflow.com/questions/1699382/linq-to-sql-nvarchar-problem/1705311#1705311Comment by KristoferA on Linq to SQL nvarchar problemKristoferA2009-11-10T03:10:20Z2009-11-10T03:10:20Z+1.. :) here's another msdn thread, also with some alternative workarounds:
<a href="http://social.msdn.microsoft.com/Forums/en-US/linqtosql/thread/20d456f0-9174-4745-bbc5-571f68879e27" rel="nofollow">social.msdn.microsoft.com/Forums/en-US/…</a>http://stackoverflow.com/questions/6281/employer-spying/6292#6292Comment by KristoferA on Employer spying?KristoferA2009-11-09T15:49:24Z2009-11-09T15:49:24Zumm. ssl adds no security in a corporate setting; they may set up the company proxy to issue their own self-signed certs and set up the company machines to accept those self signed certs. only works if you have 100% control over your machine and what root certificates it accepts.http://stackoverflow.com/questions/1605382/get-birthday-reminder-linq-query-ignoring-yearComment by KristoferA on Get Birthday reminder Linq Query ignoring year.KristoferA2009-11-01T11:10:21Z2009-11-01T11:10:21ZLarge table or small table? Any query based solution <i>will</i> 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...http://stackoverflow.com/questions/1647521/using-linq-to-sql-to-find-zipcodes-within-radius-distance/1654365#1654365Comment by KristoferA on Using Linq to Sql to find ZipCodes within Radius distanceKristoferA2009-11-01T10:57:50Z2009-11-01T10:57:50ZThat checks if it is within a square, not a radius. You need to compare the distance between lat/long pairs to get a radius...http://stackoverflow.com/questions/1636825/generation-custom-files-from-dbml-file/1637079#1637079Comment by KristoferA on Generation custom files from dbml file?KristoferA2009-10-28T13:11:45Z2009-10-28T13:11:45ZNo, then you need to switch out the code generator as others have mentioned. Take a look at Damien Guard's T4 templates: <a href="http://l2st4.codeplex.com/" rel="nofollow">l2st4.codeplex.com</a>http://stackoverflow.com/questions/1635093/weird-problem-with-my-linq-to-sql-query-and-manually-adding-some-join-statements/1635339#1635339Comment by KristoferA on Weird problem with my Linq to Sql query and manually adding some JOIN statements.KristoferA2009-10-28T11:26:42Z2009-10-28T11:26:42ZNope, 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.http://stackoverflow.com/questions/1594970/how-do-you-save-a-linq-object-if-you-dont-have-its-data-context/1629831#1629831Comment by KristoferA on How do you save a Linq object if you don't have its data context?KristoferA2009-10-28T00:30:41Z2009-10-28T00:30:41ZIsn't it a bit unnecessary to do a second db roundtrip?http://stackoverflow.com/questions/1594970/how-do-you-save-a-linq-object-if-you-dont-have-its-data-context/1613204#1613204Comment by KristoferA on How do you save a Linq object if you don't have its data context?KristoferA2009-10-28T00:30:10Z2009-10-28T00:30:10Z@Jacob Umm, refresh does a new db roundtrip. That is a tad more expensive that just serializing and deserializing...