/// <summary> /// 创建新的 VehicleColor 对象。 /// </summary> /// <param name="id">Id 属性的初始值。</param> /// <param name="name">Name 属性的初始值。</param> public static VehicleColor CreateVehicleColor(global::System.Int32 id, global::System.String name) { VehicleColor vehicleColor = new VehicleColor(); vehicleColor.Id = id; vehicleColor.Name = name; return(vehicleColor); }
/// <summary> /// 用于向 VehicleColors EntitySet 添加新对象的方法,已弃用。请考虑改用关联的 ObjectSet<T> 属性的 .Add 方法。 /// </summary> internal void AddToVehicleColors(VehicleColor vehicleColor) { base.AddObject("VehicleColors", vehicleColor); }