0

我将参数枚举类型可空传递给我的控制器。

并且需要将此参数设置为null而不使用if else条件。

我正在尝试这样..

Category? categoryID = CategoryID.HasValue ? CategoryID : null ? CategoryID : CategoryID;

我怎样才能做到这一点?帮我。

4

1 回答 1

1

Got Solution for this.

Category? categoryID = CategoryID.HasValue ? CategoryID : null 

Produced the desired result for me.

于 2013-11-13T14:49:58.250 回答