/// <summary>
 /// Create a new UserProfile object.
 /// </summary>
 /// <param name="userId">Initial value of the UserId property.</param>
 /// <param name="email">Initial value of the Email property.</param>
 /// <param name="active">Initial value of the Active property.</param>
 public static UserProfile CreateUserProfile(global::System.Int32 userId, global::System.String email, global::System.Boolean active)
 {
     UserProfile userProfile = new UserProfile();
     userProfile.UserId = userId;
     userProfile.Email = email;
     userProfile.Active = active;
     return userProfile;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the UserProfiles EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUserProfiles(UserProfile userProfile)
 {
     base.AddObject("UserProfiles", userProfile);
 }