/// <summary>
 /// Deprecated Method for adding a new object to the Words EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToWords(Words words)
 {
     base.AddObject("Words", words);
 }
 /// <summary>
 /// Create a new Words object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="word">Initial value of the Word property.</param>
 public static Words CreateWords(global::System.Int32 id, global::System.String word)
 {
     Words words = new Words();
     words.ID = id;
     words.Word = word;
     return words;
 }