/// <summary> /// Create a new Town object. /// </summary> /// <param name="name">Initial value of the Name property.</param> public static Town CreateTown(global::System.String name) { Town town = new Town(); town.Name = name; return town; }
/// <summary> /// Deprecated Method for adding a new object to the Towns EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToTowns(Town town) { base.AddObject("Towns", town); }