User Charles Graham - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:09:01Z http://stackoverflow.com/feeds/user/7705 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1557781/whats-the-difference-between-the-dependency-injection-and-service-locator-patter 5 What's the difference between the Dependency Injection and Service Locator patterns? Charles Graham 2009-10-13T01:15:19Z 2009-10-14T17:51:01Z <p>Both patterns seem like an implementation of the principle of inversion of control. That is, that an object should not know how to construct its dependencies. </p> <p>Dependency Injection (DI) seems to use a constructor or setter to "inject" it's dependencies. </p> <p><strong>Example of using Constructor Injection:</strong> </p> <pre><code>//Foo Needs an IBar public class Foo { private IBar bar; public Foo(IBar bar) { this.bar = bar; } //... } </code></pre> <p>Service Locater seems to use a "container", which wires up its dependencies and gives foo it's bar. </p> <p><strong>Example of using a Service Locator:</strong></p> <pre><code>//Foo Needs an IBar public class Foo { private IBar bar; public Foo() { this.bar = Container.Get&lt;IBar&gt;(); } //... } </code></pre> <p>Because our dependencies are just objects themselves, these dependencies have dependencies, which have even more dependencies, and so on and so forth. Thus, the Inversion of Control Container (or DI Containor) was born. Examples: Castle Windsor, Ninject, Structure Map, Spring, etc.)</p> <p>But a IOC/DI Container looks <strong>exactly</strong> like a Service Locator. Is calling it a DI Containor a bad name? Is an IOC/DI Container just another <strong>type</strong> of Service Locator? Is the nuance in the fact that we use DI Containers mostly when we have many Dependencies?</p> http://stackoverflow.com/questions/1558189/how-to-catch-inner-exception-in-net/1558227#1558227 0 Answer by Charles Graham for How to catch inner exception in .NET? Charles Graham 2009-10-13T04:44:39Z 2009-10-13T04:44:39Z <p>First, if you are using try/catch, you should probably have a finally to clean up the resources. That being said, having nested try/catch blocks us <em>usually</em> a code smell. Do you have to implement it that way? Why does the server just fail? Why couldn't the Data Layer just pass a status message? Exceptions should be, well, "exceptional".</p> <p>If you have to use exceptions, "Joel Coehoorn"'s way seems good.</p> http://stackoverflow.com/questions/1326173/how-do-i-turn-off-the-convert-extension-method-to-plain-static-automatic-refact 0 How do I turn off the "Convert Extension Method to Plain Static" automatic refactoring in resharper? Charles Graham 2009-08-25T05:11:10Z 2009-08-25T05:23:50Z <p>When using Resharper, for some reason, when I call an extension method, it automatically converts it into a static method call. This is the so called <a href="http://www.jetbrains.com/resharper/webhelp/Refactorings%5F%5FConvert%5FExtension%5FMethod%5Fto%5FPlain%5FStatic.html?permalink" rel="nofollow">Convert Extension Method to Plain Static</a> refactoring.</p> <pre><code>foo.Bar() </code></pre> <p>becomes</p> <pre><code>MyStaticExtensions.Bar(foo); </code></pre> <p>Ironically, it then flags this as a code smell. How do I turn this off?</p> http://stackoverflow.com/questions/1237032/good-tutorial-for-resharper-templates 0 Good Tutorial for Resharper Templates Charles Graham 2009-08-06T04:51:20Z 2009-08-18T04:22:39Z <p>I'm looking to get into some of the more advanced features of resharper tamplates. I know just enough to be dangerous by looking at some of the existing templates. </p> <p>What are some of the more advanced features beyond using a variable name in between dollar signs and using $END$ to show where your cursor goes?</p> <p>What are some good sources on Resharper templates?</p> http://stackoverflow.com/questions/1210679/can-you-use-optional-parameters-in-code-targeting-net-3-5 0 Can you use Optional Parameters in code targeting .Net 3.5? Charles Graham 2009-07-31T04:25:37Z 2009-07-31T05:30:17Z <p>I'm looking to write a library that uses the new optional parameters feature of C# 4.0, but I want to target it to the 3.5 version of th framework. Is this possible? Are optional parameters syntactic sugar in the same way that Extension Methods are?</p> http://stackoverflow.com/questions/433913/in-sql-is-there-a-difference-between-count-and-countfieldname/1210744#1210744 2 Answer by Charles Graham for In SQL is there a difference between count(*) and count(<fieldname>) Charles Graham 2009-07-31T04:49:55Z 2009-07-31T04:49:55Z <p>If you want to improve performance (i.e. be a complete performance Nazi), you might want to do neither.</p> <p>Example:</p> <pre><code>SELECT COUNT(1) FROM MyTable WHERE ... </code></pre> http://stackoverflow.com/questions/598703/definitive-sources-for-the-difference-between-silverlight-and-wpf 6 Definitive source(s) for the difference between Silverlight and WPF Charles Graham 2009-02-28T21:21:27Z 2009-05-10T04:30:42Z <p>Does anyone know of a definitive guide or guides that tells us the differences between WPF and Silverlight. I know that Silverlight, for example, doesn’t have all the controls and all the namespaces that WPF has. Is there a source which tells me exactly what controls and namespaces are absent in Silverlight? </p> <p>There are other things that I know off the top of my head, like only allowing asynchronous communications using basic http binding. Also, Silverlgiht doesn’t have all of the type converters out of the box. Anyone else have interesting experiences with the nuances or know of sources that explain them?</p> http://stackoverflow.com/questions/800967/enforcing-source-control/800990#800990 3 Answer by Charles Graham for Enforcing source control Charles Graham 2009-04-29T05:22:44Z 2009-04-29T05:22:44Z <p>Email everyone and tell them to use Source Control or be fired! I'm not one to tell people to give out threats or even to have many policies, but using source control is just one those things that people should just be on board with without question.</p> <p>If people are not serious about source control, then there are two possibilities. 1) The setup is too hard, and you should simplify the process to make it a one step process to check in. 2) They are bad developers and need to go. Period!</p> http://stackoverflow.com/questions/319639/what-is-aspect-oriented-programming 5 What is Aspect Oriented Programming? [closed] Charles Graham 2008-11-26T03:08:25Z 2009-04-23T00:06:43Z <h3>Duplicate:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/242177/what-is-aspect-oriented-programming">What is aspect-oriented programming?</a></p> </blockquote> <p>Every time I here a podcast or read a blog entry about it, even here, they make it sound like string theory or something. Is the best way to describe it OOP with Dependency Injection on steroids?</p> <p>Every time someone tries to explain it, it’s like, Aspects, [Adults from Peanuts Cartoon sound], Orthogonal, [more noise], cross cutting concerns, etc. Seriously, can anyone describe it in layman’s terms. </p> http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98379#98379 0 Answer by Charles Graham for What's the best API you've ever used? Charles Graham 2008-09-19T00:36:42Z 2009-04-19T11:54:05Z <p>Sharepoint has a pretty nice API. I haven't used it in production code, but I have played around with it. </p> <p>There are some frameworks that I don't really like that also have pretty sweet API's. SQL Server Reporting services is one of them. I never really like getting into SSRS, but if you have a report that you want to run and export to pdf or excel in a batch format, the API is a life saver. MS CRM also has a pretty good API.</p> http://stackoverflow.com/questions/739327/can-i-add-a-binding-rule-to-a-silverlight-element/739364#739364 1 Answer by Charles Graham for Can I add a binding rule to a Silverlight element? Charles Graham 2009-04-11T01:58:08Z 2009-04-11T01:58:08Z <p>Why not just have the object that you are binding to handle it?</p> <pre><code>public string ImageURL { get { return (_ImageURL != string.Empty) ? _ImageURL : _MyDefaultImageURL; } } </code></pre> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/104604#104604 18 Answer by Charles Graham for What non-programming books should programmers read? Charles Graham 2008-09-19T19:06:08Z 2009-04-09T22:18:25Z <p><a href="http://rads.stackoverflow.com/amzn/click/0316346624" rel="nofollow">The Tipping Point</a> is one of the best books that I have ever read.</p> <p><img src="http://megroberts.files.wordpress.com/2008/11/the-tipping-point-740155.jpg" width="200"></p> http://stackoverflow.com/questions/709343/copying-sql-server-db-using-script/709367#709367 0 Answer by Charles Graham for Copying SQL Server DB using script Charles Graham 2009-04-02T11:42:50Z 2009-04-02T11:42:50Z <p>Why don't you just do a backup and restore?</p> http://stackoverflow.com/questions/707955/how-do-you-navigate-between-views-in-mvp-using-c-winforms/707969#707969 0 Answer by Charles Graham for How do you navigate between views in MVP using C# WinForms? Charles Graham 2009-04-02T01:24:53Z 2009-04-02T01:24:53Z <p>It's a Method on the view. So you would have an abstract method, like ShowCustomerForm(), for example, and the implementation for WinForms would be CustomerForm.Show (or whatever it is in WinForms) and in WebForms it would be Response.Redirict(CustomerForm.aspx).</p> http://stackoverflow.com/questions/685015/what-is-the-best-twitter-api-wrapper-library-for-net/687564#687564 0 Answer by Charles Graham for What is the best Twitter API wrapper/library for .NET? Charles Graham 2009-03-26T21:15:10Z 2009-03-26T21:15:10Z <p><a href="http://apiwiki.twitter.com/Libraries#C/NET" rel="nofollow">Here</a> is a list of all the C# libraries listed on twitter's website.</p> <p><a href="http://apiwiki.twitter.com/REST-API-Documentation" rel="nofollow">Here</a> is a link to Twitter's REST API documentation.</p> http://stackoverflow.com/questions/350404/how-do-the-proxy-decorator-adaptor-and-bridge-patterns-differ 10 How do the Proxy, Decorator, Adaptor, and Bridge Patterns differ? Charles Graham 2008-12-08T18:32:06Z 2009-03-20T16:02:00Z <p>I was looking at the Proxy Pattern, and to me it seems an awful lot like the Decorator, Adaptor, and Bridge Patterns. Am I misunderstanding something? What's the difference? Why would I use the proxy pattern veses the others? How have you used them in the past in real world projects?</p> http://stackoverflow.com/questions/665129/resolve-use-of-sqlparameter-in-sql-like-clause-not-working/665157#665157 0 Answer by Charles Graham for Resolve: Use of SqlParameter in SQL LIKE clause not working Charles Graham 2009-03-20T06:18:01Z 2009-03-20T06:18:01Z <p>You could do "LIKE @SEARCH" and in your C# code, do searchString = "%" + searchString + "%"</p> http://stackoverflow.com/questions/328496/when-would-you-use-the-builder-pattern 5 When would you use the Builder Pattern? Charles Graham 2008-11-30T05:41:23Z 2009-03-20T01:46:00Z <p>What are some common, real world examples of using the Builder Pattern? What does it buy you? Why not just use a Factory Pattern?</p> http://stackoverflow.com/questions/652819/would-net-benefit-from-named-anonymous-types/652893#652893 -1 Answer by Charles Graham for Would .NET benefit from "named anonymous" types? Charles Graham 2009-03-17T03:00:32Z 2009-03-17T03:00:32Z <p>Could you create an Interface with the properties FirstName and LastName and use that?</p> http://stackoverflow.com/questions/608906/markup-extensions-in-wpf-silverlight 3 Markup Extensions in WPF/Silverlight Charles Graham 2009-03-04T01:16:53Z 2009-03-04T08:58:50Z <p>Has anyone ever created a custom markup extension in WPF or Silverlight? When would you ever want or need to do this? Any tips or sources on how to do it?</p> http://stackoverflow.com/questions/607226/how-can-i-tell-if-an-index-contains-a-column-of-type-varcharmax/607265#607265 0 Answer by Charles Graham for How can I tell if an index contains a column of type varchar(max)? Charles Graham 2009-03-03T17:08:54Z 2009-03-03T17:08:54Z <p>I think that for "max" columns, the length or size feild in the sys.columns table should be -1. Don't have the documentation in front of me, but let me know if this works.</p> http://stackoverflow.com/questions/600943/how-to-convert-a-sql-subquery-to-a-join/600955#600955 0 Answer by Charles Graham for How to convert a SQL subquery to a join Charles Graham 2009-03-02T01:05:33Z 2009-03-02T01:05:33Z <p>You Might be able to make the MAX a table alias that does group by.</p> <p>It might look something like this:</p> <pre><code>SELECT t1.id, t1.title, t1.contenttext, t1.fk_idothertable t1.version FROM mytable as t1 JOIN (SELECT fk_idothertable, MAX(version) AS topversion FROM mytable GROUP BY fk_idothertable) as t2 ON t1.version = t2.topversion </code></pre> http://stackoverflow.com/questions/580255/orm-adoption-in-enterprise-solution/580306#580306 1 Answer by Charles Graham for ORM Adoption in Enterprise Solution? Charles Graham 2009-02-24T03:01:17Z 2009-02-24T03:01:17Z <p>I once interviewed at a firm in NYC that almost exclusively used NHibernate, and their clients were some of the biggest Investment Banks on Wall street. (It's hard not to make jokes no, but you get the point).</p> <p>So I would say that there are a lot of pretty hardcore places that use NHibernate.</p> http://stackoverflow.com/questions/580134/best-intro-database-book-for-nontechnical-person/580183#580183 0 Answer by Charles Graham for best intro database book for nontechnical person Charles Graham 2009-02-24T02:02:37Z 2009-02-24T02:02:37Z <p>OK, I'm going to be <em>that guy</em>. Your best strategy is to create some views or even aggregate and/or denormalized tables and just give her access to that, depending on how "live" her data needs to be.</p> <p>Turning non technical people wild on databases without being careful can cause you a lot of headaches.</p> http://stackoverflow.com/questions/580148/string-a-value-type-part-of-generics-constraint/580161#580161 1 Answer by Charles Graham for String a value type part of generics constraint Charles Graham 2009-02-24T01:56:43Z 2009-02-24T01:56:43Z <p>String is really a reference type that <em>acts</em> like a value type. That's why you can test against null for a string and you can't for int, bool, etc. Well, you can, but you will just get the default value 0, false, etc.</p> http://stackoverflow.com/questions/578441/how-would-you-represent-this-xml-in-an-object/578487#578487 3 Answer by Charles Graham for How would you represent this XML in an object? Charles Graham 2009-02-23T17:17:15Z 2009-02-23T18:09:40Z <p>To expand on the general idea from Daniel L.</p> <pre><code>public Class FileTransferPath { public Enum SourceEnum { User, App } public SourceEnum Source { get; set; } //Automatic properties in 3.5 Syntax public string FilePath { get; set; } } public Class FileTransferSettings { public FileTransferPath UploadPath { get; set; } public FileTransferPath DownLoadPath { get; set; } } </code></pre> http://stackoverflow.com/questions/575136/transactions-in-the-repository-pattern 4 Transactions in the Repository Pattern Charles Graham 2009-02-22T16:10:35Z 2009-02-23T11:51:36Z <p>How do I encapsulate the saving of more than one entity in a transactional manner using the repository pattern? For example, what if I wanted to add an order and update the customer status based on that order creation, but only do so if the order completed successfully? Keep in mind that for this example, orders are not a collection inside the customer. They are their own entity.</p> <p>This is just a contrived example, so I don’t really care whether orders should or should not be inside the customer object or even in the same bounded context. I don’t really care what underlying technology will be used (nHibernate, EF, ADO.Net, Linq, etc.) I just want to see what some calling code might look like in this admittedly contrived example of an all or nothing operation.</p> http://stackoverflow.com/questions/575606/what-makes-a-good-side-project-altruistic-or-selfish/575673#575673 0 Answer by Charles Graham for What makes a good side project, altruistic or selfish Charles Graham 2009-02-22T20:08:19Z 2009-02-22T20:08:19Z <p>It's your time. Your side project should be something that you want to work on. And who says that it's an either or. Can’t you create an awesome pimp my ride app or Jetsonise my house app and then open source it? Then, everybody wins, right?</p> http://stackoverflow.com/questions/575561/do-programmers-have-to-be-good-in-mathematics/575658#575658 0 Answer by Charles Graham for Do programmers have to be good in mathematics? Charles Graham 2009-02-22T20:04:11Z 2009-02-22T20:04:11Z <p>Well, Jeff Atwood sucks at Math, and look at what he created.</p> <p>Always be careful of any statement that uses the word <strong>all</strong>. But seriously, if a coder "has a very high passion for programming, sound technical knowledge and willingness to learn", then I don't need to know anything else. 99.999% of people who meet that description will be great coders if put in the proper enviernment.</p> http://stackoverflow.com/questions/575568/why-would-you-ever-use-asp-nets-viewstate-storage-object-over-the-session-storag/575619#575619 1 Answer by Charles Graham for Why would you ever use asp.net's ViewState storage object over the Session storage object? Charles Graham 2009-02-22T19:52:06Z 2009-02-22T19:52:06Z <p>You are doing an app where viewstate bloat, for the most part, is not an issue, then it's better to store page specific data in the viewstate because it helps your server perform better. If you go crazy with session, or any caching, for that matter, you can hurt yourself more then you help yourself.</p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/104604#104604 Comment by Charles Graham on What non-programming books should programmers read? Charles Graham 2009-11-12T18:51:40Z 2009-11-12T18:51:40Z I've heard criticisms of Gladwell like that, but those guys just sound like haters. Does anyone have a <i>specific</i> example of one of his arguments that is completely wrong? http://stackoverflow.com/questions/1557781/whats-the-difference-between-the-dependency-injection-and-service-locator-patter/1557810#1557810 Comment by Charles Graham on What's the difference between the Dependency Injection and Service Locator patterns? Charles Graham 2009-10-13T02:05:34Z 2009-10-13T02:05:34Z I prefer &quot;Singletons Considered Stupid&quot;, <a href="http://steve.yegge.googlepages.com/singleton-considered-stupid" rel="nofollow">steve.yegge.googlepages.com/singleton-considered-&hellip;</a> http://stackoverflow.com/questions/350404/how-do-the-proxy-decorator-adaptor-and-bridge-patterns-differ Comment by Charles Graham on How do the Proxy, Decorator, Adaptor, and Bridge Patterns differ? Charles Graham 2009-09-25T13:58:17Z 2009-09-25T13:58:17Z Well, these four patterns have the exact same implementation details. State verses Strategy can at least be summed up as state-full verses stateless (for the most part). Often, the Strategy is just method injection, where the state pattern uses an interface to do more then abstract away a method call. The strategy, also, at the end of the day, is a hack to allow functional programming in the OO world. http://stackoverflow.com/questions/1326173/how-do-i-turn-off-the-convert-extension-method-to-plain-static-automatic-refact/1326201#1326201 Comment by Charles Graham on How do I turn off the "Convert Extension Method to Plain Static" automatic refactoring in resharper? Charles Graham 2009-08-25T15:39:11Z 2009-08-25T15:39:11Z Nope, it doesn't look like I have any cleanup profiles set up. This actually only happens in a particular circumstance. Namely a Linq To SQL extension method defined in a partial class. http://stackoverflow.com/questions/433913/in-sql-is-there-a-difference-between-count-and-countfieldname/1210744#1210744 Comment by Charles Graham on In SQL is there a difference between count(*) and count(<fieldname>) Charles Graham 2009-08-06T05:25:46Z 2009-08-06T05:25:46Z I'm sure that this would probably have the same perf as COUNT(Clustered_Index_Column), since it has to actually read the CI regardless. But it was a cool trick that the DBA put in the SQL standards. That is, don't select a column by name if you don't need it. http://stackoverflow.com/questions/1210679/can-you-use-optional-parameters-in-code-targeting-net-3-5/1210689#1210689 Comment by Charles Graham on Can you use Optional Parameters in code targeting .Net 3.5? Charles Graham 2009-07-31T04:36:28Z 2009-07-31T04:36:28Z Yeah, I know. I love Optional parameters but hate VB. ;) Plus, having an app in 2 languages is kind of a kludge if you only need VB stuff for one or two classes. http://stackoverflow.com/questions/1210679/can-you-use-optional-parameters-in-code-targeting-net-3-5/1210685#1210685 Comment by Charles Graham on Can you use Optional Parameters in code targeting .Net 3.5? Charles Graham 2009-07-31T04:34:31Z 2009-07-31T04:34:31Z Yeah, I would think that this is the case, but I don't want to go through installing VS2010 when it isan't RTM yet if it doesn't give this to me. http://stackoverflow.com/questions/331899/should-i-charge-my-client-extra-for-the-source-code/332173#332173 Comment by Charles Graham on Should I charge my client extra for the source code? Charles Graham 2009-05-26T13:26:57Z 2009-05-26T13:26:57Z We all do that in some way or the other, but I would never blatantly re-use something that I did for someone for hire. It's just unethical. (Use it as reference material, maybe) Besides the fact that you should want to make it better, code done for hire is owned by the client. PERIOD! http://stackoverflow.com/questions/368551/comma-izing-a-list-of-items/370394#370394 Comment by Charles Graham on Comma "izing" a list of items Charles Graham 2009-04-29T05:16:57Z 2009-04-29T05:16:57Z Good call. On further look, String.Join looks to be better. I'm deleting the answer. http://stackoverflow.com/questions/758913/sql-stored-procedure-comparing-values/758934#758934 Comment by Charles Graham on SQL Stored Procedure Comparing values Charles Graham 2009-04-17T04:33:31Z 2009-04-17T04:33:31Z Just trying to keep you honest ;) http://stackoverflow.com/questions/758913/sql-stored-procedure-comparing-values/758934#758934 Comment by Charles Graham on SQL Stored Procedure Comparing values Charles Graham 2009-04-17T03:49:46Z 2009-04-17T03:49:46Z You may need to do null checking, but that might be overboard. http://stackoverflow.com/questions/328496/when-would-you-use-the-builder-pattern/664723#664723 Comment by Charles Graham on When would you use the Builder Pattern? Charles Graham 2009-03-20T06:01:55Z 2009-03-20T06:01:55Z I don't think that that's the builder pattern. The StringBuilder is just another implementation of a character array class (i.e. string), but it makes performance and memory management into account, because strings are immutable. http://stackoverflow.com/questions/652965/how-to-install-sql-server-2005-express-as-not-us-english Comment by Charles Graham on How to install SQL Server 2005 Express as NOT US English Charles Graham 2009-03-17T04:26:40Z 2009-03-17T04:26:40Z Are you talking about that localization or are you talking about the language that SQL server uses in its menus ans such? http://stackoverflow.com/questions/608906/markup-extensions-in-wpf-silverlight/609773#609773 Comment by Charles Graham on Markup Extensions in WPF/Silverlight Charles Graham 2009-03-10T06:29:07Z 2009-03-10T06:29:07Z Ah, another in it's many limitations. I can't wait for Mix so I can figure out if they fixed this shit. http://stackoverflow.com/questions/607226/how-can-i-tell-if-an-index-contains-a-column-of-type-varcharmax/607278#607278 Comment by Charles Graham on How can I tell if an index contains a column of type varchar(max)? Charles Graham 2009-03-03T17:18:58Z 2009-03-03T17:18:58Z Cool beans. I knew it was something with -1 and length.