/// <summary>
 /// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUsers(User user)
 {
     base.AddObject("Users", user);
 }
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="firstName">Initial value of the FirstName property.</param>
 /// <param name="lastName">Initial value of the LastName property.</param>
 /// <param name="screenName">Initial value of the ScreenName property.</param>
 /// <param name="email">Initial value of the Email property.</param>
 /// <param name="isOnline">Initial value of the IsOnline property.</param>
 public static User CreateUser(global::System.Guid id, global::System.String firstName, global::System.String lastName, global::System.String screenName, global::System.String email, global::System.Boolean isOnline)
 {
     User user = new User();
     user.Id = id;
     user.FirstName = firstName;
     user.LastName = lastName;
     user.ScreenName = screenName;
     user.Email = email;
     user.IsOnline = isOnline;
     return user;
 }