LINQ to SQL auto-generated Extensibility Methods - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T06:48:51Zhttp://stackoverflow.com/feeds/question/366926http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/366926/linq-to-sql-auto-generated-extensibility-methods0LINQ to SQL auto-generated Extensibility MethodsJohnIdol2008-12-14T20:12:15Z2008-12-14T20:59:54Z
<p>When I generate entity classes using LINQ to SQL I get what I want but I get also a bunch of other Extensibility Methods Definitions.</p>
<p>For Example for myField (TEXT) I get:</p>
<pre><code> partial void OnMyFieldChanging(string value);
partial void OnMyFieldChanged();
</code></pre>
<p>What's a common use for the extensibility methods above?</p>
http://stackoverflow.com/questions/366926/linq-to-sql-auto-generated-extensibility-methods/366975#3669751Answer by TT for LINQ to SQL auto-generated Extensibility MethodsTT2008-12-14T20:53:30Z2008-12-14T20:53:30Z<p>The most examples I have seen for overriding these methods is for validation use.</p>
<pre><code>partial void OnMyFieldChanging(string value)
{
if(value == valid)
continue;
else
throw new Exception();
}
</code></pre>
<p>You can override these methods directly for each property or also override OnValidate() for the whole object</p>