What components of the .Net framework should a professional developer typically avoid? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T00:48:59Z http://stackoverflow.com/feeds/question/766257 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a 7 What components of the .Net framework should a professional developer typically avoid? Cory House 2009-04-19T22:27:10Z 2009-04-21T08:43:55Z <p>.Net is a huge framework with some functionality that appears to target beginners or becomes problematic if much customization is involved. So what functionality available in the .Net framework do you feel professional developers should avoid and why? </p> <p>For example, .Net has a wizard for common user management functions. Is using this functionality considered appropriate for professional use or a beginner only? </p> <p><strong>One component/feature/class, etc per answer please</strong> so votes are specific to a single item.</p> <p>Thanks in advance for your input!</p> http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a/766262#766262 13 Answer by John Sheehan for What components of the .Net framework should a professional developer typically avoid? John Sheehan 2009-04-19T22:29:17Z 2009-04-19T22:29:17Z <p>Typed DataSets<br /> ASP.NET *View Controls<br /> ASP.NET *DataSource Controls</p> http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a/766276#766276 1 Answer by JayMcClellan for What components of the .Net framework should a professional developer typically avoid? JayMcClellan 2009-04-19T22:38:50Z 2009-04-19T22:38:50Z <p>Thread.Abort</p> <p>Here is an excellent article by Ian Griffiths about <a href="http://www.interact-sw.co.uk/iangblog/2004/11/12/cancellation" rel="nofollow">Why Thread.Abort is Evil</a> and some better alternatives.</p> http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a/766282#766282 3 Answer by Tomas Lycken for What components of the .Net framework should a professional developer typically avoid? Tomas Lycken 2009-04-19T22:42:28Z 2009-04-19T22:42:28Z <p>I think generally most controls/features that do a lot of work "behind the scenes" can cause a lot of trouble. No problem using a GridView if that layout is <em>exactly</em> what you want - but it very rarely is, and a Repeater is probably a better choice. UpdatePanels can save you lots of work if you want an ajaxy feel to your site, but compared with a jQuery AJAX call they - sorry to say so - suck. The user wizard you mention can be really useful during development, but if membership functionality is required in the project it should be built as an integrated part of it.</p> <p>So in summary: Proffessional programmers should do the job themselves and write code that specifically satisfies their clients needs, and only take in ready made parts of the .Net Framework when that is in fact exactly what they need.</p> http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a/766344#766344 7 Answer by Bayard Randel for What components of the .Net framework should a professional developer typically avoid? Bayard Randel 2009-04-19T23:13:20Z 2009-04-19T23:13:20Z <p>MS Ajax</p> <p>jquery, and other js frameworks like prototype etc., are a more lightweight and flexible alternative. The MS Ajax controls may seem great initially, until you really need a custom behaviour out of the scope of the controls.</p> <p>Microsoft themselves have recognised this to some extent in that jquery will be bundled with upcoming versions of visual studio, with intellisense support.</p> http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a/766365#766365 1 Answer by Nicolas Dorier for What components of the .Net framework should a professional developer typically avoid? Nicolas Dorier 2009-04-19T23:22:16Z 2009-04-20T10:46:43Z <p>Linq To XML</p> <p>XmlDocument/Xpath is easier to use, if you want strong typing to parse your document use <a href="http://msdn.microsoft.com/en-us/library/x6c1kb0s%28VS.71%29.aspx" rel="nofollow">xsd.exe</a> or <a href="http://www.codeplex.com/Xsd2Code" rel="nofollow">Xsd2Code</a>.</p> <p><strong><em>EDIT</em></strong></p> <p>which one do you prefer ? </p> <pre><code>IEnumerable&lt;XElement&gt; partNos = from item in purchaseOrder.Descendants("Item") where (int) item.Element("Quantity") * (decimal) item.Element("USPrice") &gt; 100 orderby (string)item.Element("PartNumber") select item; </code></pre> <p>or, with XmlDocument and XPath</p> <pre><code>var nodes = myDocument.SelectNodes("//Item[USPrice * Quantity &gt; 100]"); </code></pre> http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a/766653#766653 0 Answer by Robert Rossney for What components of the .Net framework should a professional developer typically avoid? Robert Rossney 2009-04-20T02:27:55Z 2009-04-20T02:27:55Z <blockquote> <p>.Net is a huge framework with some functionality that appears to target beginners or becomes problematic if much customization is involved.</p> </blockquote> <p>It's the "appears to target beginners" that's the real problem. </p> <p>Typed data sets are a great example. VS provides a nice simple UI to functionality that should be used only by rank beginners building extremely simple demo applications and experienced professionals who understand every nuance of the ADO.NET object model and what typed data sets are actually doing. Nobody in between those two poles should touch it, because there's a good way to learn every nuance of the ADO.NET object model and typed data sets aren't it.</p> <p>Or take LINQ. It's seductively easy to write LINQ code without having a good understanding of <code>IEnumerable&lt;T&gt;</code>. But it's not so easy to write maintainable LINQ code without that knowledge.</p> http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a/766806#766806 0 Answer by JonnyBoats for What components of the .Net framework should a professional developer typically avoid? JonnyBoats 2009-04-20T03:41:48Z 2009-04-20T03:41:48Z <p>You can think of .NET like an onion with many layers. For example the .NET <a href="http://msdn.microsoft.com/en-us/netframework/aa497273.aspx" rel="nofollow">compact framework</a> is a subset of full .NET. Further there are "extra" layers on top on .NET in the form of "Extensions" which are optional installs for new features which have not yet been made part of .NET proper. An example of this would be when Microsoft released <a href="http://weblogs.asp.net/scottgu/archive/2007/12/09/asp-net-3-5-extensions-ctp-preview-released.aspx" rel="nofollow">ASP.NET 3.5 Extensions</a> which has now been rolled into .NET 3.51. </p> <p>Another way to think of .NET is as a set of "libraries" you can use. For example there are a set or routines to support RegEx. If you want or need regular expressions, then you use these functions, if not you can simply ignore them. SImilary functions for things like trigonometry or security.</p> <p>So I guess it really boils down to what do you need for your application? If you are doing scientific programming you may well want the trig functions. A graphical app will require functions that a console application would not. Web apps probably do not need to use the clipboard functions etc.</p> <p>I really don't think there are any bad APIs in .NET, just programmers who use them in inappropriate ways. </p> http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a/766827#766827 1 Answer by itowlson for What components of the .Net framework should a professional developer typically avoid? itowlson 2009-04-20T03:51:20Z 2009-04-20T03:51:20Z <p>Remoting is generally a good one to avoid, at least if you're targeting 3.0 or above and can therefore easily host messaging endpoints in-process.</p> http://stackoverflow.com/questions/766257/what-components-of-the-net-framework-should-a-professional-developer-typically-a/767075#767075 0 Answer by orj for What components of the .Net framework should a professional developer typically avoid? orj 2009-04-20T06:03:59Z 2009-04-20T06:03:59Z <p>There is lots to avoid in the WinForms library.</p> <p>Avoid DataBinding to most standard WinForms controls. There are many bugs in that area which will lead to lots of head scratching. Or at least that has been my experience. NumericUpDown is a good example of this buggy mess.</p> <p>Also avoid the standard WinForms controls when dealing with large datasets. They do a lot of data copying and can't deal well with large datasets. </p> <p>Avoid ListView in "Virtual" mode as it is full of bugs.</p> <p>In general I just recommend staying away from WinForms. If you have the option go for WPF or at least buy a good, well supported (and hopefully less buggy) 3rd party forms library.</p>