Link to home
Start Free TrialLog in
Avatar of Camillia
CamilliaFlag for United States of America

asked on

How can I use/call these methods in my class?

I have the class below.

I have another class that inherits from  above:

public class JobData: NewBlanceJobSiteDataContext
   {
            ....
   }


How can I use those "partial Extensibility methods" in my JobData class?? Or i just cant call/use those methods?
public partial class JobSiteDataContext : System.Data.Linq.DataContext
	{
		
		private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();
		
    #region Extensibility Method Definitions
    partial void OnCreated();
    partial void InsertHRJobPostings(HRJobPostings instance);
    partial void UpdateHRJobPostings(HRJobPostings instance);
    partial void DeleteHRJobPostings(HRJobPostings instance);
    #endregion

...

}

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of iUsername
iUsername

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial