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.
For Example for myField (TEXT) I get:
partial void OnMyFieldChanging(string value);
partial void OnMyFieldChanged();
What's a common use for the extensibility methods above?