/// <summary>
 /// Deprecated Method for adding a new object to the ProjectLinks EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToProjectLinks(ProjectLink projectLink)
 {
     base.AddObject("ProjectLinks", projectLink);
 }
 /// <summary>
 /// Create a new ProjectLink object.
 /// </summary>
 /// <param name="linkID">Initial value of the LinkID property.</param>
 /// <param name="projectID">Initial value of the ProjectID property.</param>
 /// <param name="uRL">Initial value of the URL property.</param>
 public static ProjectLink CreateProjectLink(global::System.Int32 linkID, global::System.Int32 projectID, global::System.String uRL)
 {
     ProjectLink projectLink = new ProjectLink();
     projectLink.LinkID = linkID;
     projectLink.ProjectID = projectID;
     projectLink.URL = uRL;
     return projectLink;
 }