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