Exemple #1
0
 public Query <TEntity> ToImmutable() => new Query <TEntity>((IBoolValue)_where?.ToImmutable(), _orderBy?.ToImmutable(), _skipCount, _takeCount);
Exemple #2
0
 public OrderBy <TEntity> ToImmutable()
 => new OrderBy <TEntity>(new Property <TEntity>(_column), _direct, _then?.ToImmutable());