User Neil - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T20:52:24Zhttp://stackoverflow.com/feeds/user/76091http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1359974/convince-me-to-move-to-net-3-5-from-2-0/1789590#17895900Answer by Neil for Convince me to move to .net 3.5 (from 2.0)Neil2009-11-24T11:52:40Z2009-11-24T11:52:40Z<p>I've read a lot of the other answers and note the accepted answer with great development-time benefits of .NET Framework. Here's one more plus (among many) for .NET Framework 3.5 & LINQ.</p>
<p>Two words:</p>
<blockquote>
<p>Deferred execution</p>
</blockquote>
<p>Have a look at <code>yield return</code> and the clever compiler tricks that build state machines behind the scenes for you.</p>
http://stackoverflow.com/questions/1782577/what-is-the-best-approach-to-build-dynamic-linq-queries/1782889#17828890Answer by Neil for What is the best approach to build dynamic LINQ queries?Neil2009-11-23T12:33:12Z2009-11-23T12:33:12Z<p>I haven't actually had need to implement this myself yet, but I'm thinking that what you are after is an <code>ExpressionTree</code></p>
<p>Its too long a topic to try and get into here - I'd suggest Google or look up some reading. I've learned the first-principles bits that I know from Jon Skeet's book "C# in Depth"</p>
<p>Otherwise, first hit on google is the <a href="http://msdn.microsoft.com/en-us/library/bb397951.aspx" rel="nofollow">MSDN article</a></p>
http://stackoverflow.com/questions/1769886/how-to-code-a-truly-generic-tree-using-generics/1770031#17700311Answer by Neil for How to code a truly generic tree using GenericsNeil2009-11-20T11:56:53Z2009-11-20T11:56:53Z<p>If you're not limited to C# 2.0, and can go C# 3.0 then Expression Trees may be the way to go.</p>
<p>Have a <a href="http://dvanderboom.wordpress.com/2008/03/15/treet-implementing-a-non-binary-tree-in-c/" rel="nofollow">look at this as an example</a> <code>"Tree<T>: Implementing a Non-Binary Tree in C#"</code></p>
<p>...there are many similar one's out there.</p>
http://stackoverflow.com/questions/1769761/best-way-to-extract-date-from-sql-datetime-field-in-c-net/1769817#17698170Answer by Neil for Best way to extract date from SQL Datetime field in C#.Net?Neil2009-11-20T11:13:23Z2009-11-20T11:13:23Z<p>If you're not using an ORM mapper / framework that is automatically translating the date-time formats, based on the database server's configuration, I'll assume that you're trying to do this manually. Also assuming you're using SQL Server.</p>
<p>Its not ideal, but better to make sure that you are getting the datetime out of the database in a known format (your database server might be configured for a different locale to your web/app server - for whatever reason)</p>
<p>Have a look at <a href="http://www.technoreader.com/SQL-Server-Date-Time-Format.aspx" rel="nofollow">this article</a> for the SQL Convert functionality:</p>
<pre><code>CONVERT(data_type,expression,date Format style)
</code></pre>
<p>USA mm/dd/yy - select convert(varchar, getdate(), 1)</p>
<p>ANSI yy.mm.dd - select convert(varchar, getdate(), 2)</p>
<p>British/French dd/mm/yy - select convert(varchar, getdate(), 3) </p>
<p>... etc.</p>
<p>Once you've got your query data back, using the Convert static class:</p>
<pre><code>Convert.ToDateTime(reader["DateColumn"])
</code></pre>
http://stackoverflow.com/questions/1747726/howwhere-are-closed-over-variables-stored/1747779#17477793Answer by Neil for How|Where are closed-over variables stored?Neil2009-11-17T10:00:39Z2009-11-17T13:13:04Z<p>Hi Henk,</p>
<p>Jon Skeet has a good explanation of this over <a href="http://stackoverflow.com/questions/1660483/problem-with-delegates-in-c">here</a>, where he points to a blog article too.</p>
<p>[Edit] - per great comment from @AnthonyWJones (edits in <em>italic</em>)</p>
<p>The captured variables are stored inside a class wrapper behind the scenes - essentially a new wrapper object is created for each <em>set of</em> captured variable*s used by the delegate*. This is so that a hard reference keeps the object*s* alive and prevents garbage collection while the delegate is still active.</p>
<p>It's not quite boxing, although that is probably a confusing analogy.</p>
<p>Think of it as the <strong>variable</strong> being captured, and not so much as the value.</p>
http://stackoverflow.com/questions/1742384/does-sql-server-2000-log-queries-that-produce-errors-anywhere/1742407#17424070Answer by Neil for Does SQL Server 2000 log queries that produce errors anywhere?Neil2009-11-16T14:12:50Z2009-11-16T14:12:50Z<p>Have you checked the SQL Server error logs that you can find in Enterprise Manager?</p>
<p>I don't have Enterprise Manager in front of me, but I imagine its either under the Security or Management section.</p>
http://stackoverflow.com/questions/1737153/asp-net-application-default-file-index-aspx/1737210#17372100Answer by Neil for asp.net application default file Index.aspxNeil2009-11-15T10:39:00Z2009-11-15T10:39:00Z<p>If you're running this project from Visual Studio in the development web browser:</p>
<p>Go to your web application in Visual Studio and right click on the Index.aspx page and look for something like "Set as Start Page". That should do the trick.</p>
<p>In IIS, you'd have to go to the properties of the website and add Index.aspx to the list of default documents.</p>
http://stackoverflow.com/questions/1697683/horners-rule-c/1697731#1697731-1Answer by Neil for horner's rule C++Neil2009-11-08T20:02:03Z2009-11-08T20:02:03Z<p>Horner's rule is based on a substitution series representing a polynomial.</p>
<p>In your implementation above, n represents the number of iterative substitutions (the length of the array of coeffecients)</p>
<p>Because there is no quick way to find the length of an array in c++ (eg. in C# you can do <code>a.Length</code>), you pass the length of the <code>a[]</code> as a parameter to the function.</p>
<p>So n has no real direct relevance to Horner's rule in this context - its an implementation detail of the algorithm</p>
http://stackoverflow.com/questions/1677226/performant-file-copy-in-c/1689829#16898290Answer by Neil for Performant File Copy in C#?Neil2009-11-06T19:33:37Z2009-11-06T19:33:37Z<p>After learning that its the operation of iterating over all those files thats taking so long, I'm thinking you might have to change strategy.</p>
<p>Maybe you're biting off more than you can chew in one go.</p>
<p>Possibly create a service that triggers several times a day and just does a few files at a time... Not sure what your file names look like, but you'll get the pattern below.</p>
<pre><code>// Get all files starting with "a"
var dirInfo = new DirectoryInfo(PathToSource);
var fileInfo = dirInfo.GetFiles("a.*");
var filesToArchive = fileInfo.Where(f =>
f.LastWriteTime.Date < StartThresholdInDays.Days().Ago().Date
&& f.LastWriteTime.Date >= StopThresholdInDays.Days().Ago().Date
);
foreach (var file in filesToArchive)
{
file.MoveTo(PathToTarget+file.Name);
}
// Rinse repeat for each letter of alphabet
</code></pre>
<p>The code above should get progressively faster as you move more and more files out of the folder.</p>
http://stackoverflow.com/questions/1683944/removing-duplicates-from-a-list-with-priority/1684463#16844630Answer by Neil for Removing duplicates from a list with "priority"Neil2009-11-05T23:45:50Z2009-11-05T23:52:15Z<p>You haven't mentioned whether C# 2.0 or 3.0 ...</p>
<p>I'll give you the C# 2.0 version and you can shorten it with linq if you like. Linq would look much nicer since you could replace all the "delegate"s with lambdas</p>
<p>(I did this to help me learn too - nice data problem)</p>
<p>If your collection was a generic List for example:</p>
<pre><code>class Program {
public class Record {
public string ID1;
public string ID2;
public string Data1;
public string Data2;
public string DataN;
public override string ToString() {
return string.Format("ID1 = {0}, ID2 = {1}", ID1, ID2);
}
}
static void Main(string[] args) {
// Test data
List<Record> collection = new List<Record>() {
new Record() { ID1 = null, ID2 = "x.2" },
new Record() { ID1 = "x.1", ID2 = "x.2" },
new Record() { ID1 = "z.1", ID2 = "z.2" },
new Record() { ID1 = null, ID2 = "s.2" },
new Record() { ID1 = null, ID2 = "a.2" },
new Record() { ID1 = "w.1", ID2 = "w.2" },
new Record() { ID1 = null, ID2 = "w.2" }
};
// List of records with no ID1 (low priority data)
List<Record> emptyID1 = collection.FindAll(delegate(Record r) {
return r.ID1 == null ? true : false;
});
// Temporarily remove all low-priority data
collection.RemoveAll(delegate(Record r) {
return r.ID1 == null ? true : false;
});
// Check whether we lost any ID2 records when
// removing low priority data and put ID2's back
emptyID1.ForEach(delegate(Record emptyIdRecord) {
if (collection.Find( delegate(Record r) {
return r.ID2 == emptyIdRecord.ID2 ? true : false;
}) == null) {
collection.Add(emptyIdRecord);
}
});
// Display results
collection.ForEach( delegate (Record r)
{
Console.WriteLine(r.ToString());
}
);
Console.ReadLine();
}
}
</code></pre>
http://stackoverflow.com/questions/1677226/performant-file-copy-in-c/1677519#16775191Answer by Neil for Performant File Copy in C#?Neil2009-11-05T00:01:10Z2009-11-05T00:01:10Z<p>Reading your question - you want to archive files, so I would expect you want to <strong>move</strong> them, not <em>copy</em> maybe?</p>
<p>Possibly change</p>
<pre><code>foreach (var file in filesToArchive)
{
file.CopyTo(PathToTarget+file.Name);
}
</code></pre>
<p>to</p>
<pre><code>foreach (var file in filesToArchive)
{
file.MoveTo(PathToTarget+file.Name);
}
</code></pre>
<p>... because a <strong>move</strong> operation is similar to changing file pointer in the FAT, whereas a copy has to literally duplicate all the bytes of the file.</p>
<p>I'd expect the <strong>move</strong> would be much quicker...</p>
http://stackoverflow.com/questions/1673184/whats-the-difference-between-multiple-where-clauses-and-operator-in-linq-to-s/1673290#16732902Answer by Neil for What's the difference between multiple where clauses and && operator in LINQ-to-SQL?Neil2009-11-04T11:43:48Z2009-11-04T11:43:48Z<p>The code:</p>
<pre><code>where x.a==1
where x.b==1
</code></pre>
<p>or </p>
<pre><code>where x.a==1 && x.b==1
</code></pre>
<p>is syntactic sugar for C# anyway. It will compile as a LINQ method chain of</p>
<pre><code>Where(...).Where(...)
</code></pre>
<p>just as you guessed it probably would, so I <em>really</em> doubt there is any difference in the generated SQL. Try using a tool like Resharper from Jetbrains - it even offers intellisense that gives you the choice to auto-convert between the two to save you time re-writing it for testing.</p>
<p>My preference is to write really simple queries as method chains, (e.g. where there is only 1 collection/table involved and no joins) and anything more complicated in the more expressive Linq sugar-syntax.</p>
http://stackoverflow.com/questions/1670695/eating-up-processing-power/1670966#16709662Answer by Neil for Eating up processing powerNeil2009-11-04T00:05:27Z2009-11-04T00:36:17Z<p>Quick background: In reality a CPU is either busy or not, 100% or 0%. Operating systems just do a running average over a short period of time to give you an idea of how often your CPU is crunching.</p>
<p>You didn't specify if you want to do this for a specific core, or as an average across all CPU cores... I'll describe the latter - you'll need to run this code in 1 thread for every core.</p>
<p>Look in the <strong>System.Diagnostics</strong> namespace and find performance counters.</p>
<pre><code>protected PerformanceCounter cpuCounter;
cpuCounter = new PerformanceCounter();
cpuCounter.CategoryName = "Processor";
cpuCounter.CounterName = "% Processor Time";
cpuCounter.InstanceName = "_Total";
</code></pre>
<p>I would probably attach to the "Processor" performance counters (Total, not per core). You may want to keep a short running average in your code too.</p>
<p>In your for-loop, check the value of your Processor usage and depending on whether its near your threshold, sleep for a longer or shorter interval... (you might increment/decrement your sleep delay more or less depending on how far away you are from ideal load)</p>
<p>If you get the running average, and your sleep increment/decrement values right, your program should self-tune to get to the right load.</p>
http://stackoverflow.com/questions/1612414/intriguing-sql-server-performance-tuning-problem/1656870#16568701Answer by Neil for Intriguing SQL Server performance-tuning problemNeil2009-11-01T10:56:46Z2009-11-01T10:56:46Z<p>Here's another factor for you to consider - OUTSIDE the database:</p>
<p><em>and this could potentially be a LOT quicker and easier to optimise than sifting through your entire business logic in the database sprocs</em></p>
<p><strong>Drive Fragmentation</strong></p>
<p>Your like-for-like tests on a new system, showing gradual performance degradation the more times you run the code, hints at a fragmentation issue...</p>
<p>On a RAID array, fragmentation performance degradation is compounded and if your database isn't able to work off its buffer cache (memory) then you'll be hitting your disk a lot. One way to check for this:</p>
<ul>
<li>Open perfmon</li>
<li>Add a disk queue counter (under Physical Disk) for the drive that the database resides on</li>
</ul>
<p>With disk queues - anything above zero means that you're waiting for a previous operation to complete and your disk is holding your process up. So if there is a queue for more than 25-30% of the time, you need to figure out why. Either the disks are too slow, or your fragmentation has snowballed.</p>
<p>NTFS is notoriously bad for managing fragmentation, especially when a disk becomes more than 70% full.</p>
<p>If you can move your database logs to a different drive because these grow and shrink (similar to adding / deleting files), that should help your fragmentation problem somewhat.</p>
<p>In addition to external fragmentation at the file-system level (NTFS), you can also get index fragmentation inside your database from lots of insert operations. You should consider rebuilding your indexes at least weekly, and look into the FILL_FACTOR <em>and</em> PAD_INDEX options - you will need both. Also consider using the SORT_IN_TEMPDB option and move your temp database to another drive.</p>
http://stackoverflow.com/questions/1404039/in-linq-what-is-the-main-difference-usefulness-between-any-and-where2In LINQ, what is the main difference/usefulness between .Any<> and .Where<>Neil2009-09-10T08:23:02Z2009-10-31T21:43:16Z
<p>For example, if I had a Linq to SQL data context, or if I had ADO.NET Entity Framework entities that mapped to a database table, and I want to select a single Customer...</p>
<p>What is the difference between:</p>
<pre><code>MyDatabaseContext.Customers.Any(c => c.CustomerId == 3)
</code></pre>
<p>and </p>
<pre><code>MyDatabaseContext.Customers.Where(c => c.CustomerId == 3)
</code></pre>
<p>Are both even valid? </p>
<pre><code>.Any<> - return type bool
.Where<> - return type IQueryable
</code></pre>
<p>EDIT: Corrected question wording after accepting answer from Fredrik Mörk - thanks.</p>
http://stackoverflow.com/questions/1643793/are-linq-to-sql-objects-serializable-for-session-state2Are Linq to sql objects serializable for session state?Neil2009-10-29T13:37:19Z2009-10-30T16:31:11Z
<p>Without going into whether this is a good or bad idea:</p>
<p><strong>Is it possible to store a LINQ-to-SQL domain object in the ASP.NET Session, when the session is <em>out-of-process</em>?</strong></p>
<p>[EDIT]
I'm currently getting the following error and asked this question because I suspect the LINQ-to-SQL objects:</p>
<p>Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.
[/EDIT]</p>
<p>e.g.</p>
<pre><code>Session["Zoo"] = new Zoo() {
new Lion(),
new Tiger(),
new Elephant()
}
</code></pre>
<p>where:</p>
<ul>
<li>Zoo, Lion, Tiger, Elephant all come out of a ZooDataContext</li>
</ul>
<p>and the web.config file contains</p>
<pre><code><sessionState
mode="StateServer"
stateConnectionString="tcpip=127.0.0.1:42424"
stateNetworkTimeout="10"
sqlConnectionString="SqlStateConnectionString"
sqlCommandTimeout="30"
timeout="20"
regenerateExpiredSessionId="true"/>
</code></pre>
http://stackoverflow.com/questions/1643793/are-linq-to-sql-objects-serializable-for-session-state/1644445#16444450Answer by Neil for Are Linq to sql objects serializable for session state?Neil2009-10-29T15:14:34Z2009-10-29T15:56:11Z<p>After digging into this a little more, the answer is looking like:</p>
<p><strong>Mostly NO,</strong> you can't serialize a LINQ-to-SQL generated domain object.</p>
<p>It depends on whether the LINQ-to-SQL object relational mapping references any one-to-many relationships (which I bet 99% do)...</p>
<p>... because looking at the .designer.cs class that is generated by the LINQ-to-SQL designer interface, there are</p>
<pre><code>EntitySet<T>
EntiryRef<T>
</code></pre>
<p>property references on the class that I want to store in the Session and they are <strong>not serializable</strong></p>
<p>Well written article by Ian Cooper <a href="http://codebetter.com/blogs/ian%5Fcooper/archive/2008/06/28/architecting-linq-to-sql-part-9.aspx" rel="nofollow">here</a>, describing good design patterns for Object Relational Mapping technologies, persistance ignorance and working with disconencted data sets. In my opinion, a far better and more loosely coupled design pattern than trying to persist data in Session.</p>
http://stackoverflow.com/questions/1539114/yield-return-statement-inside-a-using-block-disposes-before-executing5yield return statement inside a using() { } block Disposes before executingNeil2009-10-08T16:53:50Z2009-10-08T17:14:33Z
<p>I've written my own custom data layer to persist to a specific file and I've abstracted it with a custom DataContext pattern.</p>
<p>This is all based on the .NET 2.0 Framework (given constraints for the target server), so even though some of it might look like LINQ-to-SQL, its not! I've just implemented a similar data pattern.</p>
<p>See example below for example of a situation that I cannot yet explain.</p>
<p>To get all instances of Animal - I do this and it works fine</p>
<pre><code>public static IEnumerable<Animal> GetAllAnimals() {
AnimalDataContext dataContext = new AnimalDataContext();
return dataContext.GetAllAnimals();
}
</code></pre>
<p>And the implementation of the GetAllAnimals() method in the AnimalDataContext() below</p>
<pre><code>public IEnumerable<Animal> GetAllAnimals() {
foreach (var animalName in AnimalXmlReader.GetNames())
{
yield return GetAnimal(animalName);
}
}
</code></pre>
<p>The AnimalDataContext() implements IDisposable because I've got an XmlTextReader in there and I want to make sure it gets cleaned up quickly. </p>
<p>Now if I wrap the first call inside a using statement like so</p>
<pre><code>public static IEnumerable<Animal> GetAllAnimals() {
using(AnimalDataContext dataContext = new AnimalDataContext()) {
return dataContext.GetAllAnimals();
}
}
</code></pre>
<p>and put a break-point at the first line of the AnimalDataContext.GetAllAnimals() method and another break-point at the first line in the AnimalDataContext.Dispose() method, and execute...</p>
<p><strong>the Dispose() method is called FIRST so that AnimalXmlReader.GetNames() gives "object reference not set to instance of object" exception because AnimalXmlReader has been set to null in the Dispose() ???</strong></p>
<p>Any ideas? I have a hunch that its related to <strong>yield return</strong> not being allowed to be called inside a try-catch block, which <strong>using</strong> effectively represents, once compiled... </p>
http://stackoverflow.com/questions/1503970/microsoft-ajax-script-extensions-same-in-both-asp-net-ajax-and-asp-net-mvc1Microsoft Ajax script extensions - same in both ASP.NET AJAX and ASP.NET MVC?Neil2009-10-01T13:28:23Z2009-10-07T06:06:53Z
<p>Are the client side javascript extensions, e.g. <strong>MicrosoftAjax.js</strong>, the same in both ASP.NET AJAX (for ASP.NET WebForms) and ASP.NET MVC?</p>
<p>For example, does it still include:</p>
<ul>
<li>Global Namespace</li>
<li>Sys Namespace</li>
<li>Sys.Net Namespace</li>
<li>Sys.Serialization Namespace</li>
<li>Sys.Services Namespace</li>
<li>Sys.UI Namespace</li>
<li>Sys.WebForms Namespace</li>
</ul>
<p>although I'd suspect that the Sys.WebForms namespace might be redundant for MVC...</p>
http://stackoverflow.com/questions/1404293/sql-server-perfomance/1404367#14043671Answer by Neil for SQL SERVER perfomance ?Neil2009-09-10T09:54:41Z2009-09-10T09:54:41Z<p>It sounds to me like the query plan was the same in both cases... since you had a table scan and a hash match both times...</p>
<p>Before you try and compare those percentages... let me illustrate the danger with this question: </p>
<p><strong>which is bigger</strong></p>
<pre><code>61% of 465
</code></pre>
<p><strong>or</strong></p>
<pre><code>69% of 234
</code></pre>
<p><strong>??</strong></p>
<p>You might see in this case that 69% of 234 would be by far "quicker" than 61% for 465. Its all relative to the total cost of the query.</p>
<p>Be careful about just comparing percentages because you don't know what the actual value that corresponds to 100% in both cases is... e.g. the TOTAL execution cost might have been lower in the second case.</p>
http://stackoverflow.com/questions/1374566/is-there-a-tool-for-adding-double-quotes-around-all-elements-of-a-csv/1375271#13752711Answer by Neil for Is there a tool for adding double quotes around ALL elements of a CSV?Neil2009-09-03T18:54:30Z2009-09-03T18:54:30Z<p>Have a look at the Excel CONCATENATE() function. It takes a comma delimitted list of strings or quoted literals...</p>
<pre><code>e.g. CONCATENATE("""", A1, """") etc.
</code></pre>
<p>where A1 is one of your columns.</p>
<p>I frequently do this for one-off SQL inserts, so where you use double-quotes, I write SQL insert statements</p>
http://stackoverflow.com/questions/1305709/slowdown-of-microsoft-visual-studio-due-to-different-virus-scanner/1343891#13438911Answer by Neil for Slowdown of Microsoft Visual Studio due to different Virus scannerNeil2009-08-27T21:42:56Z2009-08-27T21:42:56Z<p>+1 for bringing this to light. Its one of those gripes that I have about corporate antivirus policy that kills developers on slow machines.</p>
<p>I know your question is virus scanner related, but I'm going to try this from another angle and try eliminate the dependency/effect of the virus scanner slowdown.</p>
<p>I'm a contractor and I've worked on a lot of different machines and I've learned a few tricks to speed up my environment on slower PC's.</p>
<p>Number 1: - if you're using Windows Vista / Windows 7 immediately look into using Readyboost. After I plugged a USB flash drive (readyboost capable), my build / project run times dropped dramatically. Readyboost buffers the fragmented parts of your cache and stops your hard drive head hopping all over. If you're not reading your hard drive, you're not virus scanning... Made a major difference for me. Unfortunately many office PC's are still XP - in that case this isn't an option.</p>
<p>Number 2: - if you're using a Virus scanner that lets you do this, would you consider not scanning "all files"? I usually set mine to scan program files only. Admittedly not as secure, but trade off of some security versus not bringing your machine to a grinding halt. Excluding your project folder won't always help... If you're doing web development, there's disk writes to \Temporary ASP.NET files\ and the page file.</p>
<p>Number 3: - a faster hard drive. (Probably only possible if this is your machine). I wrote a blog post with an analogy that might help clear this up. Instead of repeating it all, here's a link: <a href="http://codeoverview.com/blog/2009/08/faster-hdd/" rel="nofollow">http://codeoverview.com/blog/2009/08/faster-hdd/</a></p>
<p>Essentially I'm trying to say that if your antivirus is crippling you, you probably have a typical corporate PC (maybe with an extra boost of RAM) instead of a proper developer rig. Another poor artisan crippled by a one-size fits all spanner? I'd bet your hard drive isn't particularly better performing than the one in the receptionist's PC, just bigger (not trying to be snide against you Ian - just pointing out what I've frequently seen and it frustrates me)</p>
http://stackoverflow.com/questions/1342382/which-join-having-more-i-o-and-cpu-cyecle/1342452#13424523Answer by Neil for Which Join having more I/O and CPU Cyecle ? Neil2009-08-27T17:09:24Z2009-08-27T17:15:03Z<p>Short answer: Loop join</p>
<p>In order of least efficient to most efficient</p>
<ol>
<li>The least efficient <strong>Loop join</strong> checks each value of the "left" table against each value of the "right" table. (Like a nested for-loop in programming)</li>
<li>The most commonly occurring join is a <strong>hash join</strong> where the smallest table has hash values pre-calculated for the keys being tested. The hash is then tested against the other table. Usually this is used when each table is not in the same sort order before the process beings.</li>
<li>Most efficient of all is the <strong>merge join</strong>. This is used when both tables are originally stored on disk in the same order (ie have clustered indexes and both in the same order). Here the algorithm steps through both tables at the same time and skips over sections where they don't overlap.</li>
</ol>
http://stackoverflow.com/questions/1329196/where-should-i-place-the-dll/1329250#13292503Answer by Neil for Where should I place the DLL?Neil2009-08-25T16:02:09Z2009-08-25T16:02:09Z<p>As most other answers have hinted, you can just add a reference to a dll from anywhere.</p>
<p>However it'd probably be a good idea to create a 'lib' (as in library) folder in your project, copy the dll in there and only then reference it. That way if you share your solution via source control then anyone else can use it too. (without having to download or add their own reference to a copy of the dll)</p>
http://stackoverflow.com/questions/1324629/c-class-namespace-access/1325156#13251561Answer by Neil for C# class/namespace Access Neil2009-08-24T22:39:01Z2009-08-24T22:39:01Z<p>Dryadwoods,</p>
<p>After reading your comment on Orion Edwards' answer, I think you are mixing up the concepts of:</p>
<ol>
<li><strong>structuring your project</strong> so that its manageable for you to edit and build on it, and</li>
<li><strong>protecting your code</strong> from reverse engineering</li>
</ol>
<p>If its the second that you are actually trying to achieve then look into <strong>Dotfuscator</strong> or any other C# <strong>obfuscation</strong> tool. What that does is mix up your code at compile time to make it very difficult to reverse engineer, but allows you to code as you normally would.</p>
http://stackoverflow.com/questions/1324629/c-class-namespace-access/1324655#13246554Answer by Neil for C# class/namespace Access Neil2009-08-24T20:44:21Z2009-08-24T20:58:11Z<p>I think if you change your "Directory"'s to new Projects and then include them as References in your root application you might be able to achieve what you want to achieve.</p>
<p>Once you've created new Projects, setting the accessors as <code>internal</code> will limit the scope to that assembly only.</p>
http://stackoverflow.com/questions/1322409/jquery-to-add-item-from-one-listbox-to-another-and-remove-it-to-the-same-original/1322467#13224671Answer by Neil for jQuery to add item from one listbox to another and remove it to the same original positionNeil2009-08-24T13:36:29Z2009-08-24T13:36:29Z<p>Maybe thinking about <em>ALL</em> of the items in the listbox in a different way will help:</p>
<p>If the items in #list1 also exist in an array, and the items in #list2 also exist in an array: When you click the button...</p>
<ol>
<li>Find the item in the array that corresponds to #list1. Save it to a temporary variable and remember its position.</li>
<li>Rebuild the first array in a for-loop, skipping over the selected item</li>
<li>Rebuild the second array in a for-loop, when you get to the original position, insert the value stored in the temporary variable, and then conitinue to copy the rest of the second array items</li>
<li>Remove <em>ALL</em> items from #list2</li>
<li>Insert all of the items in the second array</li>
</ol>
http://stackoverflow.com/questions/1315744/does-linq-to-dql-exist0Does "LINQ to DQL" exist?Neil2009-08-22T10:55:16Z2009-08-24T13:09:34Z
<p>If LINQ-to-SQL overcomes the object-relational impedance mismatch of a .NET application talking to a SQL Server database...</p>
<p>If I want to build a .NET MVC UI, where my model queries a Documentum CMS database...</p>
<p><strong>Is there a LINQ to DQL (Documentum Query Language) library ? ...</strong></p>
<p>... that will help me overcome the object-relational impedance mismatch of talking to Documentum?</p>
<p>I am working on a project where a .NET web-application that pulls content from a Documentum 6.5 content management system is going to be re-built.</p>
<p>The .NET web-application will be .NET MVC and will be built as a self-standing application.</p>
<p>The team building the .NET application should ideally not have to learn the intricacies of Documentum and for an interface build, and a Documentum learning course is probably overkill and would probably exceed the project timeframe by 300%-400%.</p>
<p>So before I start trying to start calling up EMC, has anyone heard of anything like this? I thought the idea of "LINQ to DQL" would be a logical step. I have never worked with Documentum although I have worked with ECM before and understand the concepts. I know that Documentum is traditionally *nix based, Java, Apache (Tomcat) but that shouldn't stop me querying it from a .NET application, similar to SQL. And if we take it that far, might as well look at LINQ for the querying mechanism...?</p>
http://stackoverflow.com/questions/1315685/c-create-cpu-usage-at-custom-percentage/1315724#13157243Answer by Neil for C#: Create CPU Usage at Custom PercentageNeil2009-08-22T10:38:37Z2009-08-22T10:38:37Z<p>Quick background: In reality a CPU is either busy or not, 100% or 0%. Operating systems just do a running average over a short period of time to give you an idea of how often your CPU is crunching.</p>
<p>I would probably use C# to attach to the "Processor" performance counters (Total, not per core). You may want to keep a short running average in your code too.</p>
<p>In your for-loop, check the value of your Processor usage and depending on whether its near your threshold, sleep for a longer or shorter interval... (you might increment/decrement your sleep delay more or less depending on how far away you are from ideal load)</p>
<p>If you get the running average, and your sleep increment/decrement values right, your program should self-tune to get to the right load.</p>
http://stackoverflow.com/questions/1202545/does-a-background-in-physics-make-you-a-better-programmer/1202624#12026244Answer by Neil for Does a background in physics make you a better programmer?Neil2009-07-29T19:50:16Z2009-07-29T19:50:16Z<p>First of all, my background: Electrical Engineering (2 years of Physics) so you understand the context of my answer.</p>
<p><em>Games Programming:</em>
<strong>Mechanics</strong> as a subject might be useful - not really physics. If you want to understand the dynamics of motion, object interaction, gravity, trajectory etc, study mechanics instead.</p>
<p><em>PC physical components (transistors / displays, colour, light):</em>
If you really want to understand whats happening at the silicon level, physics might help you. E.g. how electrons travel over transistor gates, effects of frequency.
You'll learn how colour / light / frequency interact - although this is all probably more of interest than any direct relevance to programming.</p>
<p>My opinion, if its purely for programming reasons, focus on what you need, when you need it. "Physics" is too broad a topic to really say its useful. Maybe just interesting.</p>
<p>There are electrical engineering topics that you might be able to apply: e.g. Numerical methods (e.g. how to do calculus in code), statistics, signal processing - but then thats a 4 year degree.</p>
<p>If you're just interested in being a better programmer, without doing a whole degree, most of the same knowledge is spread around in books. Just read regularly. Check out the recommended reading section on Jeff Atwood's blog: <a href="http://www.codinghorror.com/blog/archives/000020.html" rel="nofollow">http://www.codinghorror.com/blog/archives/000020.html</a> He's even added some reviews.</p>
http://stackoverflow.com/questions/563383/good-quality-free-gridview-for-net-winforms/563466#563466Comment by Neil on Good Quality Free Gridview for .NET WinFormsNeil2009-12-08T13:20:45Z2009-12-08T13:20:45ZLink now broken unfortunatelyhttp://stackoverflow.com/questions/454875/how-to-do-browser-detection-with-jquery-1-3-with-browser-msie-deprecated/456828#456828Comment by Neil on How to do browser detection with jQuery 1.3 with $.browser.msie deprecated?Neil2009-12-03T10:40:05Z2009-12-03T10:40:05ZIt might be important to know which browser if you want to display relevant screenshots though...http://stackoverflow.com/questions/1788125/how-to-apply-a-css-class-on-a-mvc-html-textboxComment by Neil on How to apply a css class on a MVC Html.TextBoxNeil2009-11-25T21:20:55Z2009-11-25T21:20:55ZYou have what appears to be a correct answer - accept it?http://stackoverflow.com/questions/1755561/how-shall-i-do-paging-in-the-mvc-gridComment by Neil on how shall I do paging in the mvc grid?Neil2009-11-25T21:17:59Z2009-11-25T21:17:59ZAccept the answer or comment. Your accept rate is very low. Based on the fact that you only ever ask questions and don't answer them - at least give people credit when they spend their time to try to help you.http://stackoverflow.com/questions/1782552/please-help-me-with-thisComment by Neil on please help me with this?Neil2009-11-23T15:33:44Z2009-11-23T15:33:44ZNo feedback on whether answer(s) were helpful. Tried giving benefit of the doubt, but based on comments above and accept rate, there's no 2-way street here.http://stackoverflow.com/questions/1782552/please-help-me-with-this/1782571#1782571Comment by Neil on please help me with this?Neil2009-11-23T11:54:30Z2009-11-23T11:54:30ZHave updated the answer with something that might make more sense - I suspect your original method didn't quite fit into the business-logic context in which you were trying to use it.http://stackoverflow.com/questions/1769886/how-to-code-a-truly-generic-tree-using-generics/1770031#1770031Comment by Neil on How to code a truly generic tree using GenericsNeil2009-11-20T14:21:47Z2009-11-20T14:21:47ZApologies about missing the 'different type' requirement. Thinking about it some more, what do you gain by using generics in this context? 1. If your <code>Node<T></code> where T is almost never a value-type, you won't gain performance here. Its only for value-types that you get performance by avoiding boxing/unboxing. 2. if you're concerned about static type safety, it might be better to define your own Node class, with a property of type <code>`object</code><code> or if require every tree node value to have certain behaviour, make your node class have a property of type </code><code>ICustomInterface</code>` etc.?http://stackoverflow.com/questions/1769463/how-to-do-the-clean-up/1769473#1769473Comment by Neil on How-to do the clean up ?Neil2009-11-20T11:18:53Z2009-11-20T11:18:53ZAgree with @Jon. Have a look at [this article][1].
Note that the title is Implementing Finalize and Dispose to Clean Up <b>Unmanaged Resources</b>, even if the article is categorised under Common Design Patterns (disposable pattern)
[1]: <a href="http://msdn.microsoft.com/en-us/library/b1yfkh5e%28VS.71%29.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1747726/howwhere-are-closed-over-variables-stored/1747779#1747779Comment by Neil on How|Where are closed-over variables stored?Neil2009-11-17T12:40:39Z2009-11-17T12:40:39Z@AnthonyWJones thanks for comment re wording. I'd forgotten to think about more than just the simple case of just one variable in the scope.http://stackoverflow.com/questions/1747726/howwhere-are-closed-over-variables-stored/1747779#1747779Comment by Neil on How|Where are closed-over variables stored?Neil2009-11-17T12:19:05Z2009-11-17T12:19:05Z@Konstantin I was also confused by value-type thinking originally. Don't think of the value, think of the variable. Unless you declare a new variable for each captured use inside a delegate, ie a new "handle", you are just holding a reference to the "v" variable and that is only declared once in the for loop.http://stackoverflow.com/questions/1697683/horners-rule-c/1697731#1697731Comment by Neil on horner's rule C++Neil2009-11-09T09:30:10Z2009-11-09T09:30:10Z@Troubadour - I disagree. n is <b>redundant information</b>. The length of the polynomial array is the order of the polynomial. I was explaining that if this was done in a different language it wouldn't even be needed. It's due to c++ implementation.http://stackoverflow.com/questions/1677226/performant-file-copy-in-cComment by Neil on Performant File Copy in C#?Neil2009-11-06T19:50:28Z2009-11-06T19:50:28Z+1 for a good practical question that is bound to affect most large websites eventuallyhttp://stackoverflow.com/questions/1677226/performant-file-copy-in-c/1677519#1677519Comment by Neil on Performant File Copy in C#?Neil2009-11-06T19:35:39Z2009-11-06T19:35:39Z@Scott fair-do's you're right. The O/S has to aggregate 500k plus records and then you start to loop through it again in your code. Added another answer (completely different approach, so I didn't edit this one)http://stackoverflow.com/questions/1682350/c-best-way-to-retrieve-accurate-dateComment by Neil on C# - Best way to retrieve accurate date?Neil2009-11-05T21:03:19Z2009-11-05T21:03:19ZI think there might be some confusion about whether you need to take timezones into account. Are you just interested in the time of day at any location, or are you interested in the timespan difference between two dates, no matter where in the world?http://stackoverflow.com/questions/1660483/problem-with-delegates-in-cComment by Neil on Problem with delegates in C#Neil2009-11-02T10:57:46Z2009-11-02T10:57:46ZFavouriting this question. This sort of behaviour just feels "dangerous". I bet its going to come up more often as one of those hard-to-debug issues as C# moves more & more towards a delegate-oriented way of encapsulating behaviour. This is like the looping equivalent of switch clauses being allowed to cascade downward without mandatory "break;" clause