예제 #1
0
 /// <summary>
 /// Returns the property select SQL fragment.
 /// </summary>
 /// <param name="size">The total number of returned types.</param>
 /// <param name="k">The sequence of the current returned type.</param>
 /// <returns>the property select SQL fragment.</returns>
 public string RenderPropertySelect(int size, int k)
 {
     return(IsAllPropertyFetch
                         ? _elementType.RenderPropertySelect(size, k, IsAllPropertyFetch)
                         : _elementType.RenderPropertySelect(size, k, _fetchLazyProperties));
 }
예제 #2
0
 /// <summary>
 /// Returns the property select SQL fragment.
 /// </summary>
 /// <param name="size">The total number of returned types.</param>
 /// <param name="k">The sequence of the current returned type.</param>
 /// <returns>the property select SQL fragment.</returns>
 public string RenderPropertySelect(int size, int k)
 {
     return(_elementType.RenderPropertySelect(size, k, IsAllPropertyFetch));
 }