Click or drag to resize
NbQueryOrderBy Method
ソート条件を設定する。ソートキーを指定する。 デフォルトは昇順。逆順にする場合はキー名の先頭に "-" を付加。

Namespace: Nec.Nebula
Assembly: Nec.Nebula.Core (in Nec.Nebula.Core.dll) Version: 7.0.0.0 (7.0.0.0)
Syntax
public NbQuery OrderBy(
	params string[] order
)

Parameters

order
Type: SystemString
ソートキー

Return Value

Type: NbQuery
this
Exceptions
ExceptionCondition
ArgumentNullExceptionソートキーがnull
ArgumentExceptionソートキーにnullの要素が含まれている
Remarks
オフラインデータのソートを行う場合、数値のみ、もしくは文字列のみの単一種別のデータを格納すること。
nullの混在は許容する。
Examples
key1昇順、key2降順でソートする場合:
query.OrderBy("key1", "-key2");
Version Information

Core

Supported in: 1.0
See Also