Ejemplo n.º 1
0
 /// <summary>
 /// Translate a CountSegment
 /// </summary>
 /// <param name="segment">the segment to Translate</param>
 /// <returns>Defined by the implementer.</returns>
 public virtual T Translate(CountSegment segment)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Determine the EntitySet of a CountSegment
 /// </summary>
 /// <param name="segment">The CountSegment to look in.</param>
 /// <returns>null, since $count doesn't have an entitySet</returns>
 /// <exception cref="System.ArgumentNullException">Throws if the input segment is null.</exception>
 public override IEdmEntitySet Translate(CountSegment segment)
 {
     DebugUtils.CheckNoExternalCallers();
     ExceptionUtils.CheckArgumentNotNull(segment, "segment");
     return(null);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Handle a CountSegment
 /// </summary>
 /// <param name="segment">the segment to Handle</param>
 public virtual void Handle(CountSegment segment)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Translate a CountSegment
 /// </summary>
 /// <param name="segment">the segment to Translate</param>
 /// <returns>UserDefinedValue</returns>
 /// <exception cref="System.ArgumentNullException">Throws if the input segment is null.</exception>
 public override bool Translate(CountSegment segment)
 {
     ExceptionUtils.CheckArgumentNotNull(segment, "segment");
     return(false);
 }