Static methods vs repository pattern with Linq2Sql - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:51:24Z http://stackoverflow.com/feeds/question/840671 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/840671/static-methods-vs-repository-pattern-with-linq2sql 1 Static methods vs repository pattern with Linq2Sql hopethisworks 2009-05-08T16:26:14Z 2009-05-13T20:42:39Z <p>I've hit on the idea of creating static methods on the partial Linq queries such as</p> <pre><code>public partial class User { public static User FindByGuid(string guid, ApplicationDataContext context) { return context.Users.Where(x =&gt; x.GUID == guid).Single(); } } </code></pre> <p>So, for example, I can easily find a user by doing:</p> <pre><code>using (var context = new ApplicationDataContext()) { var user = DataAccess.User.FindByGuid(UsersDropDown.SelectedValue, context); } </code></pre> <p>Is this a recognised design pattern? What are the advantages/disadvantages of doing this vs the repository model?</p> http://stackoverflow.com/questions/840671/static-methods-vs-repository-pattern-with-linq2sql/860315#860315 1 Answer by David Yancey for Static methods vs repository pattern with Linq2Sql David Yancey 2009-05-13T20:42:39Z 2009-05-13T20:42:39Z <p>While I don't see a recognized pattern in what your doing here I do see that you are using Dependency Injection by passing the applicationdatacontext into the method as a dependency. The problem here is that you are still tightly coupled to your datacontext regardless of where the dependency is initiated which makes it more difficult to unit test. </p>