User andypike - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T15:53:43Z http://stackoverflow.com/feeds/user/15726 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1408331/how-do-you-sort-a-parent-and-child-collection-using-linq 0 How do you sort a parent and child collection using Linq? andypike 2009-09-10T23:50:18Z 2009-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&lt;Child&gt; 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&lt;Parent&gt; parents = ... //Populated parents.OrderBy(p =&gt; p.Name).ThenBy(p =&gt; p.Children.OrderBy(c =&gt; 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-5 1 Is it possible to set a default value when deserializing xml in C# (.NET 3.5)? andypike 2008-10-10T22:04:31Z 2008-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>&lt;assignee-id type="integer"&gt;38628&lt;/assignee-id&gt; </code></pre> <p>it can also look like this:</p> <pre><code>&lt;assignee-id type="integer" nil="true"&gt;&lt;/assignee-id&gt; </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#111064 2 Answer by andypike for What is your single favorite feature in Resharper? andypike 2008-09-21T13:50:40Z 2008-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#92148 2 Answer by andypike for GUI Testing andypike 2008-09-18T12:37:27Z 2008-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#88401 1 Answer by andypike for Which is better: shipping a buggy feature or not shipping the feature at all? andypike 2008-09-17T22:36:55Z 2008-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-controls 2 How can I use NAnt to compile WPF controls andypike 2008-09-17T21:56:57Z 2008-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#82521 45 Answer by andypike for What's Your Motto As A Developer/Programmer? andypike 2008-09-17T12:23:10Z 2008-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#1408348 Comment by andypike on How do you sort a parent and child collection using Linq? andypike 2009-09-11T00:01:13Z 2009-09-11T00:01:13Z Perfect thank you very much. http://stackoverflow.com/questions/88121/how-can-i-use-nant-to-compile-wpf-controls/88142#88142 Comment by andypike on How can I use NAnt to compile WPF controls andypike 2008-09-18T12:26:45Z 2008-09-18T12:26:45Z Yep, I think this is the only way. Thanks.