1

次の方法でデータを注文する必要があります

DTO{
  id //nullable
  name // not nullable
}

demodata
entry1: Null / "TopItem"
entry2: 1    / "Numer1"
entry2: 3    / "Numer3"
entry2: 2    / "Numer2"

IDがnullのアイテムを一番上に置き、他のすべてのエントリを列名でソートする必要があるとします

これはLINQ2SQLで行うことができますか?

4

1 に答える 1

1

次のようなことを試してください:

from dto in context.DTO
orderby !dto.id.HasValue, dto.name
select dto
于 2012-10-17T16:09:21.020 に答える