Inheritance: System.Data.Objects.DataClasses.EntityObject
 /// <summary>
 /// Create a new Dog object.
 /// </summary>
 /// <param name="dogId">Initial value of the DogId property.</param>
 public static Dog CreateDog(global::System.Guid dogId)
 {
     Dog dog = new Dog();
     dog.DogId = dogId;
     return dog;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the Dogs EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToDogs(Dog dog)
 {
     base.AddObject("Dogs", dog);
 }