コード例 #1
0
        public EntitySQLSortItem(string fieldName, string aggregationPattern, EntitySQLSortDirection direction)
            : base(fieldName, aggregationPattern)
        {
            if (direction == null)
            {
                throw new ArgumentNullException("direction");
            }

            this.Direction = direction;
        }
コード例 #2
0
 public EntitySQLSortItem(string fieldName, EntitySQLSortDirection direction)
     : this(fieldName, null, direction)
 {
 }