LINQ to SQL auto-generated Extensibility Methods - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T06:48:51Z http://stackoverflow.com/feeds/question/366926 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/366926/linq-to-sql-auto-generated-extensibility-methods 0 LINQ to SQL auto-generated Extensibility Methods JohnIdol 2008-12-14T20:12:15Z 2008-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#366975 1 Answer by TT for LINQ to SQL auto-generated Extensibility Methods TT 2008-12-14T20:53:30Z 2008-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>