User andypike - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T15:53:43Zhttp://stackoverflow.com/feeds/user/15726http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1408331/how-do-you-sort-a-parent-and-child-collection-using-linq0How do you sort a parent and child collection using Linq?andypike2009-09-10T23:50:18Z2009-09-10T23:56:19Z
<p>Hi all,</p>
<p>I have the following basic classes (cut down for this question):</p>
<pre><code>public class Parent
{
public string Name { get; set; }
public IList<Child> Children { get; set; }
}
public class Child
{
public string Name { get; set; }
}
</code></pre>
<p>If I have a Parent collection, what I'd like to do is get an IList that is sorted by Parent.Name and also the Children for each parent need to be sorted by their Name. </p>
<p>I've tried this (which only sorts the Parents, not the Children):</p>
<pre><code>IList<Parent> parents = ... //Populated
parents.OrderBy(p => p.Name).ThenBy(p => p.Children.OrderBy(c => c.Name)).ToList()
</code></pre>
<p>I've searched but can't find anything (probably me being dumb). </p>
<p>Any suggestions for a Linq newbie?</p>
<p>Thanks in advance</p>
<p>Andy</p>
http://stackoverflow.com/questions/193185/is-it-possible-to-set-a-default-value-when-deserializing-xml-in-c-net-3-51Is it possible to set a default value when deserializing xml in C# (.NET 3.5)?andypike2008-10-10T22:04:31Z2008-10-11T08:57:53Z
<p>Hello all,</p>
<p>I've got a little problem that's slightly frustrating. Is it possible to set a default value when deserializing xml in C# (.NET 3.5)? Basically I'm trying to deserialize some xml that is not under my control and one element looks like this:</p>
<pre><code><assignee-id type="integer">38628</assignee-id>
</code></pre>
<p>it can also look like this:</p>
<pre><code><assignee-id type="integer" nil="true"></assignee-id>
</code></pre>
<p>Now, in my class I have the following property that should receive the data:</p>
<pre><code>[XmlElementAttribute("assignee-id")]
public int AssigneeId { get; set; }
</code></pre>
<p>This works fine for the first xml element example, but the second fails. I've tried changing the property type to be int? but this doesn't help. I'll need to serialize it back to that same xml format at some point too, but I'm trying to use the built in serialization support without having to resort to rolling my own. </p>
<p>Does anyone have experience with this kind of problem?</p>
<p>Thanks in advance</p>
<p>Andy</p>
http://stackoverflow.com/questions/103307/what-is-your-single-favorite-feature-in-resharper/111064#1110642Answer by andypike for What is your single favorite feature in Resharper?andypike2008-09-21T13:50:40Z2008-09-21T13:50:40Z<p>Rename (F2)</p>
<p>Also, here's a tip to get everyone using the shortcuts rather than the mouse... unplug their mouse! A bit extreme I know, but you can always <a href="http://www.jetbrains.com/resharper/docs/ReSharper40DefaultKeymap2.pdf" rel="nofollow">print out the cheat sheet</a>.</p>
http://stackoverflow.com/questions/92059/gui-testing/92148#921482Answer by andypike for GUI Testingandypike2008-09-18T12:37:27Z2008-09-18T12:37:27Z<p>If your application is web-based you can write tests using tools like <a href="http://watin.sourceforge.net/" rel="nofollow">WatiN</a> or <a href="http://selenium.openqa.org/" rel="nofollow">Selenium</a>. </p>
<p>If your application is Windows .NET based, you could try <a href="http://www.codeplex.com/white" rel="nofollow">White</a>.</p>
http://stackoverflow.com/questions/88339/which-is-better-shipping-a-buggy-feature-or-not-shipping-the-feature-at-all/88401#884011Answer by andypike for Which is better: shipping a buggy feature or not shipping the feature at all?andypike2008-09-17T22:36:55Z2008-09-17T22:36:55Z<p>I guess it depends on your standards. For me, buggy code is not production ready and so shouldn't be shipped. Could you have a beta version with a known issues list so users know what to expect under certain conditions? They get the benefit of using the new features but also know that it's not perfect (use that their own risk). This may keep those 4 or 5 customers that requested the feature happy for a while which gives you more time to fix the bugs (if possible) and release to production later for the masses.</p>
<p>Just some thoughts depending on your situation.</p>
http://stackoverflow.com/questions/88121/how-can-i-use-nant-to-compile-wpf-controls2How can I use NAnt to compile WPF controlsandypike2008-09-17T21:56:57Z2008-09-17T21:59:03Z
<p>I have a WPF project and I'm trying to setup a NAnt build script for it. The problem is that when it tries to compile the WPF controls, the .g.cs files are not being generated as they are when building from within Visual Studio. I'm using the csc build task.</p>
<p>From my reading it seems that when Visual Studio builds, it performs a pre-build step that generates the .g.cs files. Is it possible to do this via NAnt?</p>
<p>I found this post about WPF, .g.cs and baml: <a href="http://stuff.seans.com/2008/07/13/hello-wpf-world-part-2-why-xaml/" rel="nofollow">http://stuff.seans.com/2008/07/13/hello-wpf-world-part-2-why-xaml/</a></p>
<p>Any ideas? Thanks in advance.</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/82521#8252145Answer by andypike for What's Your Motto As A Developer/Programmer?andypike2008-09-17T12:23:10Z2008-09-17T12:23:10Z<p>If you aren't proud of it, it isn't good enough.</p>
http://stackoverflow.com/questions/1408331/how-do-you-sort-a-parent-and-child-collection-using-linq/1408348#1408348Comment by andypike on How do you sort a parent and child collection using Linq?andypike2009-09-11T00:01:13Z2009-09-11T00:01:13ZPerfect thank you very much.http://stackoverflow.com/questions/88121/how-can-i-use-nant-to-compile-wpf-controls/88142#88142Comment by andypike on How can I use NAnt to compile WPF controlsandypike2008-09-18T12:26:45Z2008-09-18T12:26:45ZYep, I think this is the only way. Thanks.