User David B - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T12:15:29Z http://stackoverflow.com/feeds/user/8155 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1904782/whats-the-real-reason-for-preventing-protected-member-access-through-a-base-sibl/1904847#1904847 0 Answer by David B for What's the real reason for preventing protected member access through a base/sibling class? David B 2009-12-15T02:23:03Z 2009-12-15T02:28:36Z <p><a href="http://msdn.microsoft.com/en-us/library/bcd5672a.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bcd5672a.aspx</a></p> <blockquote> <p>A protected member of a base class is accessible in a derived class <strong>only</strong> if the access occurs through the derived class type.</p> </blockquote> <p>There's documentation of the "what?" question. Now I wish I knew "Why?" :)</p> <p>Clearly <code>virtual</code> has nothing to do with this access restriction.</p> <p>Hmm, I think you're on to something with the sibling thing... MyDerived shouldn't be able to call YourDerived.Member</p> <p>If MyDerived can call Base.Member, it might actually be working on an instance of YourDerived and might actually be calling YourDerived.Member</p> <p>Ah, here is the same question: <a href="http://stackoverflow.com/questions/1836175/c-protected-members-accessed-via-base-class-variable/1836932#1836932">http://stackoverflow.com/questions/1836175/c-protected-members-accessed-via-base-class-variable/1836932#1836932</a></p> http://stackoverflow.com/questions/1871443/tsql-returning-one-row-when-expecting-multiple/1871460#1871460 1 Answer by David B for TSQL Returning one Row when expecting multiple David B 2009-12-09T03:43:44Z 2009-12-09T03:43:44Z <p>You'll get all the appointments (that have patients) for that doctor - you'll also get the patients in those appointments.</p> <p>If an appointment doesn't have a patient, it will not appear.</p> <p>If a patient doesn't have an appointment, it will not appear.</p> <p>If a patient has 2 appointments with this doctor, the patient will appear twice.</p> <p>If an appointment has 2 patients, the appointment will appear twice.</p> http://stackoverflow.com/questions/473934/generic-enforcement/474338#474338 1 Answer by David B for Generic enforcement David B 2009-01-23T20:14:18Z 2009-12-08T22:16:53Z <p>I think JaredPar had the right idea the first time around.</p> <pre><code>interface IMyTable&lt;T&gt; { Table&lt;T&gt; TheTable {get;} } public class MyClass&lt;TContext,T&gt; where TContext : DataContext,IMyTable&lt;T&gt; { //silly implementation provided to support the later example: public TContext Source {get;set;} public List&lt;T&gt; GetThem() { IMyTable&lt;T&gt; x = Source as IMyTable&lt;T&gt;; return x.TheTable.ToList(); } } </code></pre> <p>I want to extend his thought by adding an explicit interface implementation. This addresses Jason's remark about accessing the table property through IMyTable. The type must be involved somehow, and if you have an <code>IMyTable&lt;T&gt;</code>, the type is involved.</p> <pre><code>public partial class MyDataContext:IMyTable&lt;Customer&gt;, IMyTable&lt;Order&gt; { Table&lt;Customer&gt; IMyTable&lt;Customer&gt;.TheTable { get{ return this.GetTable&lt;Customer&gt;(); } } Table&lt;Order&gt; IMyTable&lt;Order&gt;.TheTable { get{ return this.GetTable&lt;Order&gt;(); } } } </code></pre> <p>Now it is possible to do this:</p> <pre><code>var z = new MyClass&lt;MyDataContext, Customer&gt;(); z.Source = new MyDataContext(); List&lt;Customer&gt; result = z.GetThem(); </code></pre> http://stackoverflow.com/questions/1855801/confusion-over-storing-a-type-in-a-temp-variable-in-a-linq-query/1856750#1856750 0 Answer by David B for Confusion over storing a type in a temp variable in a LINQ query David B 2009-12-06T21:57:33Z 2009-12-06T22:02:38Z <p>Don't use the var keyword, and the mystery will be resolved.</p> <p>x is an <code>IEnumerable&lt;PerformanceCounter&gt;</code></p> <p><hr></p> <blockquote> <p>Also, and I know this must have been asked before, what's the difference between the let and into keywords?</p> </blockquote> <p>The keyword <code>let</code> introduces a new query variable into scope.</p> <pre><code>from c in Customer let firstOrder = c.Orders.First() select new {c, firstOrder} </code></pre> <p>The keyword <code>into</code> introduces a new query variable into scope and removes all previous query variables from scope.</p> <pre><code>from c in Customer select new {c.Name, c.Orders} into smallerCustomer select smallerCustomer.Name </code></pre> <p>c is not in scope in that last select clause.</p> <pre><code>from c in Customer group c by c.Name[0] into g select g.First() </code></pre> http://stackoverflow.com/questions/1848973/linq-containsfunction-problem/1854255#1854255 0 Answer by David B for Linq Containsfunction problem David B 2009-12-06T03:32:02Z 2009-12-06T03:32:02Z <p>When you check in the debugger, does <code>value(MyViewModel.PersonFilterVM).LastName</code> evaluate to Smith at the time the query is resolved?</p> <p>Recall that queries are not resolved until they are enumerated.</p> http://stackoverflow.com/questions/1853777/how-to-get-unique-entries-of-products-in-a-listorder-with-linq/1854245#1854245 2 Answer by David B for How to get unique entries of products in a List<Order> with LINQ David B 2009-12-06T03:22:25Z 2009-12-06T03:22:25Z <p>If you don't want to remember SelectMany, this <em>query comprehension syntax</em> will still get you where you want to go:</p> <pre><code>var productIDs = ( from order in orders from orderrow in order.OrderRows select orderrow.ProductId ).Distinct(); </code></pre> http://stackoverflow.com/questions/1853566/a-better-way-to-do-this-linq-query/1854230#1854230 0 Answer by David B for A better way to do this LINQ query? David B 2009-12-06T03:13:05Z 2009-12-06T03:13:05Z <p>It can be difficult to stylisticly accept the joins that <em>Lambda syntax</em> uses. <em>Query comprehension syntax</em> has a much better style for joining. The same operations are performed.</p> <pre><code>Bar conflicting = ( from foo in allFoos where foo.ElectronicSerialNumber != 0 where foo.BarID != interestingBar.ID join fooInfo in fooInfoCollection on foo.ElectronicSerialNumber equals fooInfo.ElectronicID join bar in allBars on foo.BarID equals bar.ID where !bar.SomeCriteria select bar ).FirstOrDefault(); </code></pre> <p>Note, foo and fooInfo (and bar) are in-scope in the select clause, if you want to use them.</p> http://stackoverflow.com/questions/1848576/linq-version-of-select-for-update/1848936#1848936 0 Answer by David B for Linq version of SELECT FOR UPDATE David B 2009-12-04T18:51:38Z 2009-12-04T18:51:38Z <p>The simplest thing that could possibly work is to use DataContext.ExecuteCommand and send your own update statement.</p> http://stackoverflow.com/questions/1827040/wcf-linq-to-sql-table-system-data-linq-table-cannot-be-serialized/1827182#1827182 2 Answer by David B for WCF Linq to SQL Table - System.Data.Linq.Table cannot be serialized. David B 2009-12-01T16:08:03Z 2009-12-01T16:08:03Z <p>Don't return <code>Table&lt;T&gt;</code> from your service. It's a complex queryable type that depends on its DataContext and isn't an in-memory collection.</p> <p>Do return <code>List&lt;T&gt;</code>, you can convert the <code>Table&lt;T&gt;</code> to a <code>List&lt;T&gt;</code> by calling <code>System.Linq.Enumerable.ToList()</code>.</p> http://stackoverflow.com/questions/1817933/sql-server-how-to-order-by-date-if-the-date-is-getdate/1817951#1817951 2 Answer by David B for SQL Server: How to order by date, if the date is < GetDate() David B 2009-11-30T05:12:46Z 2009-11-30T05:12:46Z <pre><code>ORDER BY CASE WHEN (ClosingDate &lt; GetDate()) THEN 1 ELSE 0 END ASC, KEY_TBL.Rank DESC </code></pre> http://stackoverflow.com/questions/1790480/why-or-how-to-use-nunit-methods-with-icollectiont/1790548#1790548 1 Answer by David B for Why or how to use NUnit methods with ICollection<T> David B 2009-11-24T14:48:24Z 2009-11-24T14:48:24Z <p><code>ICollection</code> and <code>ICollection&lt;T&gt;</code> are different contracts - one does not inherit the other.</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.collections.icollection%5Fmembers.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.collections.icollection%5Fmembers.aspx</a> <a href="http://msdn.microsoft.com/en-us/library/y2fx0ty0.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/y2fx0ty0.aspx</a></p> <p>If you have a generic collection you can call <code>ToList()</code> on it and get a <code>List&lt;T&gt;</code>, which happens to implement the non-generic <code>ICollection</code> as well. Then use that List in the NUnit Assert method.</p> http://stackoverflow.com/questions/1751920/linq-query-returns-incorrect-result-set/1753281#1753281 0 Answer by David B for Linq Query Returns Incorrect Result Set David B 2009-11-18T02:39:15Z 2009-11-18T04:02:59Z <pre><code>qry.ToList() </code></pre> <p>This statement creates and returns the list you want. You need to assign the result to something (such as a local variable) if you want to use the list later.</p> <p>Edit: thanks for the update.</p> <p>I suspect that there must be something you're not telling us that could also be a problem, and it might live here:</p> <pre><code>Dim db as MyDataContext = MyGetDataContextHelper() </code></pre> <p>Does this method connect to the same database as the one you connected to when you used sql studio?</p> <ul> <li>Check the Connection property of the datacontext.</li> <li>Make sure the query is issued to the database by watching for it with the sql profiler.</li> <li>Issue a very simple query and confirm that it returns correct results.</li> </ul> http://stackoverflow.com/questions/1751095/linq-grouping-by-nullable-datetime-and-using-this-as-criteria/1753362#1753362 0 Answer by David B for Linq grouping by nullable datetime and using this as criteria David B 2009-11-18T02:57:58Z 2009-11-18T02:57:58Z <p>Sorry to answer in C#, but here's my interpretation of your queries:</p> <p>Problem #1.</p> <p>You use <em>having</em> in the question, as well as convert the datetimes to strings. I didn't see a need for either of those operations.</p> <pre><code>string inspectorId = "GPA"; List&lt;DateTime?&gt; someDates = db.IncomingInspection .Where(insp =&gt; insp.InspectorId == inspectorId) .Select(insp =&gt; insp.InspectedDate) .Distinct() .OrderByDescending(d =&gt; d) .Take(7) .ToList(); </code></pre> <p>Problem #2.</p> <p>There's two cases: either you have a null from the user or you have a value. It is simple to write a query to target each case. So simple, that I feel like I've misread the intention here.</p> <pre><code>DateTime? selectedDate = control.SelectedValue; List&lt;IncomingInspection&gt; someRecords = null; if (selectedDate.HasValue()) { DateTime selectedDateValue = selectedDate.Value; someRecords = db.IncomingInspection .Where(insp =&gt; insp.InspectorId == inspectorId) .Where(insp =&gt; insp.InspectedDate == selectedDateValue) .ToList(); } else { someRecords = db.IncomingInspection .Where(insp =&gt; insp.InspectorId == inspectorId) .Where(insp =&gt; insp.InspectedDate == null) .ToList(); } </code></pre> http://stackoverflow.com/questions/1733285/which-name-for-a-smart-dictionary-hashtable/1733385#1733385 0 Answer by David B for Which name for a "smart" dictionary (hashtable) ? David B 2009-11-14T05:33:09Z 2009-11-14T05:33:09Z <p>FullDictionary ?</p> http://stackoverflow.com/questions/1718195/differences-between-linq-to-objects-and-linq-to-sql-queries/1723304#1723304 0 Answer by David B for Differences between LINQ to Objects and LINQ to SQL queries David B 2009-11-12T16:00:54Z 2009-11-12T16:00:54Z <p>One difference that I run into is differences in grouping.</p> <p>When you group in linq to objects, you get a hierarchically shaped result (keys, with child objects).</p> <p>When you group in SQL, you get keys and aggregates only.</p> <p>When you group in linq to sql, if you ask for the child objects (more than aggregates), linq to sql will re-query each group using the key to get those child objects. If you have thousands of groups, that can be thousands of roundtrips.</p> <pre><code> //this is ok var results = db.Orders .GroupBy( o =&gt; o.CustomerID ) .Select(g =&gt; new { CustomerId = g.Key, OrderCount = g.Count() }); //this could be a lot of round trips. var results = db.Orders .GroupBy( o =&gt; o.CustomerID ) .Select(g =&gt; new { CustomerId = g.Key, OrderIds = g.Select(o =&gt; o.OrderId) }); // this is ok // used ToList to linqtosql work from linqtoObject work var results = db.Orders .Select(o =&gt; new {o.CustomerId, o.OrderId}) .ToList() .GroupBy(o =&gt; o.CustomerId) .Select(g =&gt; new { CustomerId = g.Key, OrderIds = g.Select(o =&gt; o.OrderId) }); </code></pre> http://stackoverflow.com/questions/1721337/c-like-contains-search-through-a-list/1723208#1723208 0 Answer by David B for c# "like/contains" search through a list David B 2009-11-12T15:49:10Z 2009-11-12T15:49:10Z <p>Are you confirming the textbox1.Text property in the debugger?</p> <p>Maybe <code>TextChanged</code> would be a better event for this than <code>KeyPress</code>?</p> http://stackoverflow.com/questions/1677239/how-do-you-force-linq-to-sql-to-use-the-correct-data-type-for-sql-parameters/1715254#1715254 0 Answer by David B for How do you force linq to sql to use the correct data type for sql parameters? David B 2009-11-11T13:44:21Z 2009-11-11T13:50:10Z <p>You can get the command and reset the types of the parameters on it directly (to ansi-string in your case).</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.getcommand.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.data.linq.datacontext.getcommand.aspx</a> <a href="http://msdn.microsoft.com/en-us/library/system.data.dbtype.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.data.dbtype.aspx</a></p> <p>Then you might call ExecuteReader on that command, yielding a DbDataReader. You can hand this DbDataReader to the Translate method of your datacontext, and it will give you the <code>IEnumerable&lt;T&gt;</code> that you'd expect from linq.</p> <p><a href="http://msdn.microsoft.com/en-us/library/bb534213.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb534213.aspx</a></p> <p><hr></p> <p>The performance problem is caused by the query parameter having a different type than the index selected by the query optimizer. What happens next is that <strong>the entire index is converted into the type of the parameter</strong>. This is done each time the query is issued - the conversion doesn't hang around for later querying.</p> <p>I usually see this behavior when sending a collection of strings into the database:</p> <pre><code> //this query will get correct parameter type db.Customers.Where(c =&gt; c.Name == "Bob") //this query can get incorrect parameter type List&lt;string&gt; names = new List&lt;string&gt;(){"Amy", "Bob"}; db.Customers.Where(c =&gt; names.Contains(c.Name)); </code></pre> http://stackoverflow.com/questions/1705634/proper-way-to-handle-optional-where-clause-filters-in-sql/1708308#1708308 0 Answer by David B for Proper way to handle 'optional' where clause filters in SQL? David B 2009-11-10T14:18:53Z 2009-11-10T14:18:53Z <p>Change from using the "or" syntax to a two query approach, you'll see 2 different plans that should keep your logical read count as low as possible:</p> <pre><code>IF @MyOptionalParam is null BEGIN SELECT * FROM dbo.MyTableName t1 END ELSE BEGIN SELECT * FROM dbo.MyTableName t1 WHERE t1.MyField = @MyOptionalParam END </code></pre> <p>You need to fight your programmer's urge to reduce duplication here. Realize you are asking for two fundamentally different execution plans and require two queries to produce two plans.</p> http://stackoverflow.com/questions/1705156/table-variables-is-there-a-cleaner-way/1707891#1707891 1 Answer by David B for Table Variables: Is There a Cleaner Way? David B 2009-11-10T13:15:29Z 2009-11-10T13:15:29Z <pre><code>SELECT Government, Commercial, GovernmentPortfolioContentId, CommercialPortfolioContentId FROM dbo.PortfolioHistory ORDER BY CASE WHEN Government is null THEN 2 ELSE 1 END, CASE WHEN Commercial is null THEN 2 ELSE 1 END, Government, Commercial </code></pre> <p>Aside: In your variable tables, the "Row" column should be declared as PRIMARY KEY - to gain the advantages of clustered indexing.</p> http://stackoverflow.com/questions/1700514/how-do-you-explain-closure-to-a-5-year-old/1700618#1700618 1 Answer by David B for How do you explain closure to a 5 year old? David B 2009-11-09T12:11:19Z 2009-11-09T12:11:19Z <p>If the 5 year old knew C#, I would explain with this code sample:</p> <pre><code>int i = 0; string result = null; Action iExaminer = () =&gt; { result = i % 2 == 1 ? "Odd" : "Even"; }; i = 1; iExaminer(); Console.WriteLine(result); </code></pre> <p>If the 5 year old was learning linq, I would explain with this code sample:</p> <pre><code>string name = null; IEnumerable&lt;Customer&gt; query = Customers.Where(c =&gt; c.Name == name); name = "Bob"; // query is resolved when enumerated (which is now) // Where will now call our anonymous method. foreach(var customer in query) { Console.WriteLine(customer.Name); } </code></pre> http://stackoverflow.com/questions/1683212/how-do-i-get-a-list-of-column-name-using-linq-to-sql/1683313#1683313 0 Answer by David B for How do I get a list of column name using Linq to Sql David B 2009-11-05T20:19:52Z 2009-11-05T20:19:52Z <pre><code>from rec in Db.syscolumns .... </code></pre> http://stackoverflow.com/questions/1683147/get-the-symmetric-difference-from-generic-lists/1683242#1683242 0 Answer by David B for Get the symmetric difference from generic lists David B 2009-11-05T20:10:14Z 2009-11-05T20:10:14Z <pre><code>var theUnion = list1.Concat(list2); var theIntersection = list1.Intersect(list2); var theSymmetricDifference = theUnion.Except(theIntersection); </code></pre> http://stackoverflow.com/questions/1680663/disable-foo-has-encountered-a-problem-and-needs-to-close-window/1680704#1680704 1 Answer by David B for Disable "Foo has encountered a problem and needs to close" window David B 2009-11-05T13:48:59Z 2009-11-05T13:48:59Z <p>Don't have unhandled exceptions.</p> http://stackoverflow.com/questions/1676689/in-linq-to-sql-how-do-you-determine-what-column-elements-is-a-sub-set-of-another/1676815#1676815 0 Answer by David B for In LINQ to SQL, how do you determine what column elements is a sub-set of another column (i.e. Like-Sql statement) David B 2009-11-04T21:40:08Z 2009-11-04T21:40:08Z <p>Local sequences cannot be used in many LinqToSql operators. But your original question didn't require a local sequence.</p> <pre><code>var results = from r in dc.Data where dc.SearchTerms.Any(s =&gt; r.hyperlinks.Contains(s.Term)) select r.hyperlinks; </code></pre> http://stackoverflow.com/questions/1673921/how-can-i-split-a-generic-list-of-t-based-on-a-property-of-a-list-member/1676256#1676256 0 Answer by David B for How can I split a generic List (of T) based on a property of a list member? David B 2009-11-04T20:02:44Z 2009-11-04T20:02:44Z <p>In C# with .Net 2.0, I have written (too many times):</p> <pre><code> //if PropertyA is not int, change int to whatever that type is Dictionary&lt;int, List&lt;foo&gt;&gt; myCollections = new Dictionary&lt;int, List&lt;foo&gt;&gt;(); // foreach(Foo myFoo in fooList) { //if I haven't seen this key before, make a new entry if (!myCollections.ContainsKey(myFoo.PropertyA)) { myCollections.Add(myFoo.PropertyA, new List&lt;foo&gt;()); } //now add the value to the entry. myCollections[myFoo.PropertyA].Add(myFoo); } // // now recollect these lists into the result. List&lt;List&lt;Foo&gt;&gt; result = new List&lt;List&lt;Foo&gt;&gt;(); foreach(List&lt;Foo&gt; someFoos in myCollections.Values) { result.Add(someFoos); } </code></pre> http://stackoverflow.com/questions/1673921/how-can-i-split-a-generic-list-of-t-based-on-a-property-of-a-list-member/1673928#1673928 5 Answer by David B for How can I split a generic List (of T) based on a property of a list member? David B 2009-11-04T14:03:50Z 2009-11-04T14:03:50Z <p>In C# I would write:</p> <pre><code> List&lt;List&lt;foo&gt;&gt; result = fooList .GroupBy(foo =&gt; foo.PropertyA) .Select(g =&gt; g.ToList()) .ToList(); </code></pre> http://stackoverflow.com/questions/818868/is-there-something-faster-than-having-count-for-large-tables/820472#820472 3 Answer by David B for is there something faster than "having count" for large tables? David B 2009-05-04T14:57:44Z 2009-11-04T12:44:26Z <blockquote> <p>having count(sentence_id) > 100;</p> </blockquote> <p>There's a problem with this... Either the table has duplicate word/sentence pairs, or it doesn't.</p> <p>If it does have duplicate word/sentence pairs, you should be using this code to get the correct answer:</p> <pre><code>HAVING COUNT(DISTINCT Sentence_ID) &gt; 100 </code></pre> <p><hr></p> <p>If the table does not have duplicate word/sentence pairs... then you shouldn't count sentence_ids, you should just count rows.</p> <pre><code>HAVING COUNT(*) &gt; 100 </code></pre> <p>In which case, you can create an index on <strong>*word_id only*</strong>, for optimum performance.</p> http://stackoverflow.com/questions/1661590/cant-add-value-to-list-in-c/1661607#1661607 4 Answer by David B for Can't add value to List in C# David B 2009-11-02T14:27:15Z 2009-11-02T14:27:15Z <p>Don't use var and the problem will become clear.</p> <pre><code>var part_nummer = from n in nummer select n.Value; //string temp = part_nummer; actualISDN.Value.number = part_nummer; </code></pre> http://stackoverflow.com/questions/1658312/use-linq-aggregate-function-to-build-xml-string/1661188#1661188 1 Answer by David B for use linq aggregate function to build xml string? David B 2009-11-02T13:02:10Z 2009-11-02T13:02:10Z <blockquote> <p>Or is there an easier way entirely?</p> </blockquote> <pre><code>List&lt;int&gt; list = new List&lt;int&gt;{1, 2, 3}; var xmlNodes = list.Select(i =&gt; new XElement("ID", i)); XElement xml = new XElement("Data", xmlNodes); Console.WriteLine(xml); </code></pre> http://stackoverflow.com/questions/1636562/how-to-recover-from-system-data-linq-duplicatekeyexception-without-disposing-data/1655076#1655076 0 Answer by David B for How to recover from System.Data.Linq.DuplicateKeyException without disposing DataContext? David B 2009-10-31T17:48:17Z 2009-10-31T17:48:17Z <p><a href="http://msdn.microsoft.com/en-us/library/bb387001.aspx" rel="nofollow">This</a> looks good for update conflicts. But you have insert conflicts...</p> <pre><code>Customer customer = new Customer(){Name="Bob"} myDC.Customers.InsertOnSubmit(customer); try { SubmitChanges(); } catch(DuplicateKeyException) { //throw away my old Bob and get me the database's version. myDC.Refresh(RefreshMode.OverwriteCurrentValues, customer); } </code></pre> http://stackoverflow.com/questions/473934/generic-enforcement/474338#474338 Comment by David B on Generic enforcement David B 2009-12-08T22:17:18Z 2009-12-08T22:17:18Z Thanks for the feedback http://stackoverflow.com/questions/1853566/a-better-way-to-do-this-linq-query Comment by David B on A better way to do this LINQ query? David B 2009-12-06T03:18:08Z 2009-12-06T03:18:08Z Clarify question: &quot;tighten this up&quot; could mean a lot of things. Do you mean style, performance, or something else? http://stackoverflow.com/questions/1811756/how-to-get-the-maximum-of-more-than-2-numbers-in-visual-c/1811768#1811768 Comment by David B on How to get the maximum of more than 2 numbers in Visual C#? David B 2009-11-29T01:41:56Z 2009-11-29T01:41:56Z @Jason Williams - Concat doesn't allocate an array and so is just as good as this solution. http://stackoverflow.com/questions/1779129/how-to-take-all-but-the-last-element-in-a-sequence-using-linq/1779237#1779237 Comment by David B on How to take all but the last element in a sequence using LINQ? David B 2009-11-23T01:46:02Z 2009-11-23T01:46:02Z I like it, and it does meet the criteria of not generating the sequence twice. http://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change/546441#546441 Comment by David B on Biggest performance improvement you've had with the smallest change? David B 2009-11-19T13:40:57Z 2009-11-19T13:40:57Z @Carl, that's not equivalent. Consider a person with no absences. http://stackoverflow.com/questions/1718195/differences-between-linq-to-objects-and-linq-to-sql-queries/1718207#1718207 Comment by David B on Differences between LINQ to Objects and LINQ to SQL queries David B 2009-11-12T15:52:43Z 2009-11-12T15:52:43Z Yes, LinqToSql also coalesces nulls. http://stackoverflow.com/questions/1705634/proper-way-to-handle-optional-where-clause-filters-in-sql/1707480#1707480 Comment by David B on Proper way to handle 'optional' where clause filters in SQL? David B 2009-11-10T16:35:55Z 2009-11-10T16:35:55Z You have a non-conditional SARG-able filtering criteria.. so yes you do dodge a table scan. Original question asker doesn't know SARG and will wind up with table scans if he follows your advice. http://stackoverflow.com/questions/1705634/proper-way-to-handle-optional-where-clause-filters-in-sql/1708308#1708308 Comment by David B on Proper way to handle 'optional' where clause filters in SQL? David B 2009-11-10T16:28:18Z 2009-11-10T16:28:18Z If you have multiple optional parameters, odds are that only a few are significant for the query plan... just branch on those. As for parameter sniffing: <a href="http://sqlblog.com/blogs/ben_nevarez/archive/2009/08/27/the-query-optimizer-and-parameter-sniffing.aspx" rel="nofollow">sqlblog.com/blogs/ben_nevarez/&hellip;</a> Good luck with this approach though. http://stackoverflow.com/questions/1708200/saying-c-c-are-equal-by-functionality-but-not-by-concept/1708241#1708241 Comment by David B on Saying "C & C# are equal by functionality, but not by concept" David B 2009-11-10T14:25:34Z 2009-11-10T14:25:34Z +1, nod... I don't see any OS written in C# any time soon. Must be some reason... http://stackoverflow.com/questions/1705634/proper-way-to-handle-optional-where-clause-filters-in-sql/1707480#1707480 Comment by David B on Proper way to handle 'optional' where clause filters in SQL? David B 2009-11-10T14:16:09Z 2009-11-10T14:16:09Z First query reads whole table. This is not a good way to minimize IO. http://stackoverflow.com/questions/1701759/how-to-correctly-add-action-and-func-delegate-types-to-c2-0 Comment by David B on How to correctly add Action and Func<> delegate types to C#2.0? David B 2009-11-09T15:45:56Z 2009-11-09T15:45:56Z There is no C# 3.5 - Action and Func&lt;&gt; are types in .Net 3.5 framework. C# 3.0 has some syntax (such as var and lambdas) to aid in the usage of these types. http://stackoverflow.com/questions/1673921/how-can-i-split-a-generic-list-of-t-based-on-a-property-of-a-list-member/1674008#1674008 Comment by David B on How can I split a generic List (of T) based on a property of a list member? David B 2009-11-04T19:56:47Z 2009-11-04T19:56:47Z Won't this throw if there are no items with ValueA? http://stackoverflow.com/questions/1673260/sql-datetimes-from-c-linq-to-stored-procedure Comment by David B on SQL DateTimes From C# Linq to Stored Procedure David B 2009-11-04T11:40:44Z 2009-11-04T11:40:44Z &quot;the problem&quot; : what exception do you get? http://stackoverflow.com/questions/173726/when-and-why-are-database-joins-expensive/174047#174047 Comment by David B on When and why are database joins expensive? David B 2009-11-03T11:15:40Z 2009-11-03T11:15:40Z An epic post, thanks for posting this. http://stackoverflow.com/questions/1654871/generic-tryparse-extension-method/1654961#1654961 Comment by David B on Generic TryParse Extension method David B 2009-10-31T18:00:25Z 2009-10-31T18:00:25Z And, you could get the client to pass you the parser (as a Func&lt;T, U&gt; if nothing else), instead of the type - that would avoid the reflection.