Static methods vs repository pattern with Linq2Sql - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T09:51:24Zhttp://stackoverflow.com/feeds/question/840671http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/840671/static-methods-vs-repository-pattern-with-linq2sql1Static methods vs repository pattern with Linq2Sqlhopethisworks2009-05-08T16:26:14Z2009-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 => 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#8603151Answer by David Yancey for Static methods vs repository pattern with Linq2SqlDavid Yancey2009-05-13T20:42:39Z2009-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>