“char”的替代品枚举

发布于 2024-09-12 03:38:13 字数 135 浏览 2 评论 0原文

我有一个数据库,需要将状态列更新为单个字符状态代码(“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心清如水 2024-09-19 03:38:13

您可以将字符分配给枚举成员。

这有帮助吗:

enum Status
{
 Empty = 'E',
 Updated = 'U'
}
void Main()
{
 Status status = Status.Empty;
 Console.WriteLine("{0}: {1}", status, (char)status);
}

You can assign chars to enum members.

Does this help:

enum Status
{
 Empty = 'E',
 Updated = 'U'
}
void Main()
{
 Status status = Status.Empty;
 Console.WriteLine("{0}: {1}", status, (char)status);
}
冷︶言冷语的世界 2024-09-19 03:38:13

byte - 如果您有 char

ushort - 如果您有 nchar

两者都可以转换为底层整数,并且然后转换为 char (C#)。

byte - if you have char

ushort - if you have nchar

Both can be cast to the underlying integer, and then cast to char (C#).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文