Наследование: System.Data.Entity.Core.Objects.DataClasses.EntityObject
 /// <summary>
 /// Deprecated Method for adding a new object to the Theme EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToTheme(Theme theme)
 {
     base.AddObject("Theme", theme);
 }
 /// <summary>
 /// Create a new Theme object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 /// <param name="name">Initial value of the name property.</param>
 public static Theme CreateTheme(global::System.Int32 id, global::System.String name)
 {
     Theme theme = new Theme();
     theme.id = id;
     theme.name = name;
     return theme;
 }