Testing.AdventureWorksEntities.AddToJobCandidates C# (CSharp) 메소드

AddToJobCandidates() 공개 메소드

Deprecated Method for adding a new object to the JobCandidates EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
public AddToJobCandidates ( JobCandidate jobCandidate ) : void
jobCandidate JobCandidate
리턴 void
        public void AddToJobCandidates(JobCandidate jobCandidate)
        {
            base.AddObject("JobCandidates", jobCandidate);
        }
    
AdventureWorksEntities