Inheritance: System.Data.Entity.Core.Objects.DataClasses.EntityObject
 /// <summary>
 /// Deprecated Method for adding a new object to the Keyword EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToKeyword(Keyword keyword)
 {
     base.AddObject("Keyword", keyword);
 }
 /// <summary>
 /// Create a new Keyword object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="name">Initial value of the name property.</param>
 public static Keyword CreateKeyword(global::System.Int32 id, global::System.String name)
 {
     Keyword keyword = new Keyword();
     keyword.id = id;
     keyword.name = name;
     return keyword;
 }