User David B - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T12:15:29Zhttp://stackoverflow.com/feeds/user/8155http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1904782/whats-the-real-reason-for-preventing-protected-member-access-through-a-base-sibl/1904847#19048470Answer by David B for What's the real reason for preventing protected member access through a base/sibling class?David B2009-12-15T02:23:03Z2009-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#18714601Answer by David B for TSQL Returning one Row when expecting multipleDavid B2009-12-09T03:43:44Z2009-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#4743381Answer by David B for Generic enforcementDavid B2009-01-23T20:14:18Z2009-12-08T22:16:53Z<p>I think JaredPar had the right idea the first time around.</p>
<pre><code>interface IMyTable<T>
{
Table<T> TheTable {get;}
}
public class MyClass<TContext,T> where
TContext : DataContext,IMyTable<T>
{
//silly implementation provided to support the later example:
public TContext Source {get;set;}
public List<T> GetThem()
{
IMyTable<T> x = Source as IMyTable<T>;
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<T></code>, the type is involved.</p>
<pre><code>public partial class MyDataContext:IMyTable<Customer>, IMyTable<Order>
{
Table<Customer> IMyTable<Customer>.TheTable
{ get{ return this.GetTable<Customer>(); } }
Table<Order> IMyTable<Order>.TheTable
{ get{ return this.GetTable<Order>(); } }
}
</code></pre>
<p>Now it is possible to do this:</p>
<pre><code>var z = new MyClass<MyDataContext, Customer>();
z.Source = new MyDataContext();
List<Customer> result = z.GetThem();
</code></pre>
http://stackoverflow.com/questions/1855801/confusion-over-storing-a-type-in-a-temp-variable-in-a-linq-query/1856750#18567500Answer by David B for Confusion over storing a type in a temp variable in a LINQ queryDavid B2009-12-06T21:57:33Z2009-12-06T22:02:38Z<p>Don't use the var keyword, and the mystery will be resolved.</p>
<p>x is an <code>IEnumerable<PerformanceCounter></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#18542550Answer by David B for Linq Containsfunction problemDavid B2009-12-06T03:32:02Z2009-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#18542452Answer by David B for How to get unique entries of products in a List<Order> with LINQDavid B2009-12-06T03:22:25Z2009-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#18542300Answer by David B for A better way to do this LINQ query?David B2009-12-06T03:13:05Z2009-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#18489360Answer by David B for Linq version of SELECT FOR UPDATEDavid B2009-12-04T18:51:38Z2009-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#18271822Answer by David B for WCF Linq to SQL Table - System.Data.Linq.Table cannot be serialized.David B2009-12-01T16:08:03Z2009-12-01T16:08:03Z<p>Don't return <code>Table<T></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<T></code>, you can convert the <code>Table<T></code> to a <code>List<T></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#18179512Answer by David B for SQL Server: How to order by date, if the date is < GetDate()David B2009-11-30T05:12:46Z2009-11-30T05:12:46Z<pre><code>ORDER BY
CASE
WHEN (ClosingDate < 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#17905481Answer by David B for Why or how to use NUnit methods with ICollection<T>David B2009-11-24T14:48:24Z2009-11-24T14:48:24Z<p><code>ICollection</code> and <code>ICollection<T></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<T></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#17532810Answer by David B for Linq Query Returns Incorrect Result SetDavid B2009-11-18T02:39:15Z2009-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#17533620Answer by David B for Linq grouping by nullable datetime and using this as criteriaDavid B2009-11-18T02:57:58Z2009-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<DateTime?> someDates = db.IncomingInspection
.Where(insp => insp.InspectorId == inspectorId)
.Select(insp => insp.InspectedDate)
.Distinct()
.OrderByDescending(d => 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<IncomingInspection> someRecords = null;
if (selectedDate.HasValue())
{
DateTime selectedDateValue = selectedDate.Value;
someRecords = db.IncomingInspection
.Where(insp => insp.InspectorId == inspectorId)
.Where(insp => insp.InspectedDate == selectedDateValue)
.ToList();
}
else
{
someRecords = db.IncomingInspection
.Where(insp => insp.InspectorId == inspectorId)
.Where(insp => insp.InspectedDate == null)
.ToList();
}
</code></pre>
http://stackoverflow.com/questions/1733285/which-name-for-a-smart-dictionary-hashtable/1733385#17333850Answer by David B for Which name for a "smart" dictionary (hashtable) ?David B2009-11-14T05:33:09Z2009-11-14T05:33:09Z<p>FullDictionary ?</p>
http://stackoverflow.com/questions/1718195/differences-between-linq-to-objects-and-linq-to-sql-queries/1723304#17233040Answer by David B for Differences between LINQ to Objects and LINQ to SQL queriesDavid B2009-11-12T16:00:54Z2009-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 => o.CustomerID )
.Select(g => new
{
CustomerId = g.Key,
OrderCount = g.Count()
});
//this could be a lot of round trips.
var results = db.Orders
.GroupBy( o => o.CustomerID )
.Select(g => new
{
CustomerId = g.Key,
OrderIds = g.Select(o => o.OrderId)
});
// this is ok
// used ToList to linqtosql work from linqtoObject work
var results = db.Orders
.Select(o => new {o.CustomerId, o.OrderId})
.ToList()
.GroupBy(o => o.CustomerId)
.Select(g => new
{
CustomerId = g.Key,
OrderIds = g.Select(o => o.OrderId)
});
</code></pre>
http://stackoverflow.com/questions/1721337/c-like-contains-search-through-a-list/1723208#17232080Answer by David B for c# "like/contains" search through a listDavid B2009-11-12T15:49:10Z2009-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#17152540Answer by David B for How do you force linq to sql to use the correct data type for sql parameters?David B2009-11-11T13:44:21Z2009-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<T></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 => c.Name == "Bob")
//this query can get incorrect parameter type
List<string> names = new List<string>(){"Amy", "Bob"};
db.Customers.Where(c => names.Contains(c.Name));
</code></pre>
http://stackoverflow.com/questions/1705634/proper-way-to-handle-optional-where-clause-filters-in-sql/1708308#17083080Answer by David B for Proper way to handle 'optional' where clause filters in SQL?David B2009-11-10T14:18:53Z2009-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#17078911Answer by David B for Table Variables: Is There a Cleaner Way?David B2009-11-10T13:15:29Z2009-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#17006181Answer by David B for How do you explain closure to a 5 year old?David B2009-11-09T12:11:19Z2009-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 = () =>
{
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<Customer> query = Customers.Where(c => 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#16833130Answer by David B for How do I get a list of column name using Linq to SqlDavid B2009-11-05T20:19:52Z2009-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#16832420Answer by David B for Get the symmetric difference from generic listsDavid B2009-11-05T20:10:14Z2009-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#16807041Answer by David B for Disable "Foo has encountered a problem and needs to close" windowDavid B2009-11-05T13:48:59Z2009-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#16768150Answer 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 B2009-11-04T21:40:08Z2009-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 => 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#16762560Answer by David B for How can I split a generic List (of T) based on a property of a list member?David B2009-11-04T20:02:44Z2009-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<int, List<foo>> myCollections =
new Dictionary<int, List<foo>>();
//
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<foo>());
}
//now add the value to the entry.
myCollections[myFoo.PropertyA].Add(myFoo);
}
//
// now recollect these lists into the result.
List<List<Foo>> result = new List<List<Foo>>();
foreach(List<Foo> 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#16739285Answer by David B for How can I split a generic List (of T) based on a property of a list member?David B2009-11-04T14:03:50Z2009-11-04T14:03:50Z<p>In C# I would write:</p>
<pre><code> List<List<foo>> result = fooList
.GroupBy(foo => foo.PropertyA)
.Select(g => g.ToList())
.ToList();
</code></pre>
http://stackoverflow.com/questions/818868/is-there-something-faster-than-having-count-for-large-tables/820472#8204723Answer by David B for is there something faster than "having count" for large tables?David B2009-05-04T14:57:44Z2009-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) > 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(*) > 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#16616074Answer by David B for Can't add value to List in C#David B2009-11-02T14:27:15Z2009-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#16611881Answer by David B for use linq aggregate function to build xml string?David B2009-11-02T13:02:10Z2009-11-02T13:02:10Z<blockquote>
<p>Or is there an easier way entirely?</p>
</blockquote>
<pre><code>List<int> list = new List<int>{1, 2, 3};
var xmlNodes = list.Select(i => 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#16550760Answer by David B for How to recover from System.Data.Linq.DuplicateKeyException without disposing DataContext?David B2009-10-31T17:48:17Z2009-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#474338Comment by David B on Generic enforcementDavid B2009-12-08T22:17:18Z2009-12-08T22:17:18ZThanks for the feedbackhttp://stackoverflow.com/questions/1853566/a-better-way-to-do-this-linq-queryComment by David B on A better way to do this LINQ query?David B2009-12-06T03:18:08Z2009-12-06T03:18:08ZClarify question: "tighten this up" 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#1811768Comment by David B on How to get the maximum of more than 2 numbers in Visual C#?David B2009-11-29T01:41:56Z2009-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#1779237Comment by David B on How to take all but the last element in a sequence using LINQ?David B2009-11-23T01:46:02Z2009-11-23T01:46:02ZI 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#546441Comment by David B on Biggest performance improvement you've had with the smallest change?David B2009-11-19T13:40:57Z2009-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#1718207Comment by David B on Differences between LINQ to Objects and LINQ to SQL queriesDavid B2009-11-12T15:52:43Z2009-11-12T15:52:43ZYes, LinqToSql also coalesces nulls.http://stackoverflow.com/questions/1705634/proper-way-to-handle-optional-where-clause-filters-in-sql/1707480#1707480Comment by David B on Proper way to handle 'optional' where clause filters in SQL?David B2009-11-10T16:35:55Z2009-11-10T16:35:55ZYou 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#1708308Comment by David B on Proper way to handle 'optional' where clause filters in SQL?David B2009-11-10T16:28:18Z2009-11-10T16:28:18ZIf 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/…</a> Good luck with this approach though.http://stackoverflow.com/questions/1708200/saying-c-c-are-equal-by-functionality-but-not-by-concept/1708241#1708241Comment by David B on Saying "C & C# are equal by functionality, but not by concept"David B2009-11-10T14:25:34Z2009-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#1707480Comment by David B on Proper way to handle 'optional' where clause filters in SQL?David B2009-11-10T14:16:09Z2009-11-10T14:16:09ZFirst 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-0Comment by David B on How to correctly add Action and Func<> delegate types to C#2.0?David B2009-11-09T15:45:56Z2009-11-09T15:45:56ZThere is no C# 3.5 - Action and Func<> 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#1674008Comment by David B on How can I split a generic List (of T) based on a property of a list member?David B2009-11-04T19:56:47Z2009-11-04T19:56:47ZWon't this throw if there are no items with ValueA?http://stackoverflow.com/questions/1673260/sql-datetimes-from-c-linq-to-stored-procedureComment by David B on SQL DateTimes From C# Linq to Stored ProcedureDavid B2009-11-04T11:40:44Z2009-11-04T11:40:44Z"the problem" : what exception do you get?http://stackoverflow.com/questions/173726/when-and-why-are-database-joins-expensive/174047#174047Comment by David B on When and why are database joins expensive?David B2009-11-03T11:15:40Z2009-11-03T11:15:40ZAn epic post, thanks for posting this.http://stackoverflow.com/questions/1654871/generic-tryparse-extension-method/1654961#1654961Comment by David B on Generic TryParse Extension methodDavid B2009-10-31T18:00:25Z2009-10-31T18:00:25ZAnd, you could get the client to pass you the parser (as a Func<T, U> if nothing else), instead of the type - that would avoid the reflection.