如果枚举值为null,如何将枚举设置为null?

时间:2022-03-19 23:14:56

I'm passing parameter enum type nullable to my controller.

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

and Need to set this parameter to null without using if else condition.

并且需要在不使用if else条件的情况下将此参数设置为null。

I'm trying like this..

我这样想..

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

how can i accomplish this? help me.

我怎么能做到这一点?帮我。

1 个解决方案

#1


1  

Got Solution for this.

得到了解决方案。

Category? categoryID = CategoryID.HasValue ? CategoryID : null 

Produced the desired result for me.

为我产生了理想的结果。

#1


1  

Got Solution for this.

得到了解决方案。

Category? categoryID = CategoryID.HasValue ? CategoryID : null 

Produced the desired result for me.

为我产生了理想的结果。