/// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="facebookPhoto">Initial value of the FacebookPhoto property.</param>
 /// <param name="facebookUrl">Initial value of the FacebookUrl property.</param>
 /// <param name="username">Initial value of the username property.</param>
 public static User CreateUser(global::System.Int32 id, global::System.String name, global::System.String facebookPhoto, global::System.String facebookUrl, global::System.String username)
 {
     User user = new User();
     user.Id = id;
     user.Name = name;
     user.FacebookPhoto = facebookPhoto;
     user.FacebookUrl = facebookUrl;
     user.username = username;
     return user;
 }
 /// <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);
 }