“char”的替代品枚举
我有一个数据库,需要将状态列更新为单个字符状态代码(“E”或“U”)。
我想使用枚举通过 API 更新此字段,以确保正确限制可能的值。显然枚举不能是 char 类型。什么可能是一个好的替代方法?
不,我无法更改数据库架构:)
I have a database which needs a status column updating to a single char status code ('E' or 'U').
I'd like to use an enum for updating this field through my API to ensure the possible values are restricted correctly. Obviously enums can't be of char type. What might be be a good alternative method?
And no, I can't change the database schema :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将字符分配给枚举成员。
这有帮助吗:
You can assign chars to enum members.
Does this help:
byte
- 如果您有char
ushort
- 如果您有nchar
两者都可以转换为底层整数,并且然后转换为
char
(C#)。byte
- if you havechar
ushort
- if you havenchar
Both can be cast to the underlying integer, and then cast to
char
(C#).