/// <summary> /// Deprecated Method for adding a new object to the Profile EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToProfile(Profile profile) { base.AddObject("Profile", profile); }
/// <summary> /// Create a new Profile object. /// </summary> /// <param name="profileID">Initial value of the ProfileID property.</param> /// <param name="personID">Initial value of the PersonID property.</param> /// <param name="profileTypeID">Initial value of the ProfileTypeID property.</param> public static Profile CreateProfile(global::System.Int32 profileID, global::System.Int32 personID, global::System.Int32 profileTypeID) { Profile profile = new Profile(); profile.ProfileID = profileID; profile.PersonID = personID; profile.ProfileTypeID = profileTypeID; return profile; }