/// <summary>
 /// Deprecated Method for adding a new object to the Intraday EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToIntraday(Intraday intraday)
 {
     base.AddObject("Intraday", intraday);
 }
 /// <summary>
 /// Create a new Intraday object.
 /// </summary>
 /// <param name="id">Initial value of the ID property.</param>
 /// <param name="symbol">Initial value of the Symbol property.</param>
 /// <param name="date">Initial value of the Date property.</param>
 /// <param name="open">Initial value of the Open property.</param>
 /// <param name="high">Initial value of the High property.</param>
 /// <param name="low">Initial value of the Low property.</param>
 /// <param name="close">Initial value of the Close property.</param>
 /// <param name="volume">Initial value of the Volume property.</param>
 public static Intraday CreateIntraday(global::System.Int32 id, global::System.String symbol, global::System.DateTime date, global::System.Decimal open, global::System.Decimal high, global::System.Decimal low, global::System.Decimal close, global::System.Int64 volume)
 {
     Intraday intraday = new Intraday();
     intraday.ID = id;
     intraday.Symbol = symbol;
     intraday.Date = date;
     intraday.Open = open;
     intraday.High = high;
     intraday.Low = low;
     intraday.Close = close;
     intraday.Volume = volume;
     return intraday;
 }