作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的约会数据库有 约会 ID、状态(枚举类型)、学生
作为列值。
这是 Status
枚举:
public enum StatusType
{
Pending,
Approved,
Cancelled
}
我需要查询 db(appointments) 中的行列表,其中 Status
列设置为 'Pending'
并将其传递给列表变量。
如何使用 C# 在 Visual Studio 中执行此操作?
IEnumerable<Appointment> AppQuery = from appointment in _appointmentData.GetAll()
where appointment.Status????
select appointment;
注意:_appointmentData.GetAll()
列出数据库中的所有行。
最佳答案
有点取决于存储在数据库中的内容,但是使用 .Equals
会怎样:
IEnumerable<Appointment> AppQuery = from appointment in _appointmentData.GetAll()
where appointment.Status.Equals(StatusType.Pending)
select appointment;
关于c# - 在 C# 中从 DB 查询枚举值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38780168/
我是一名优秀的程序员,十分优秀!