1
我的約會數據庫有Appointment ID, Status(enum type), Student
作爲列值。查詢C#中DB的枚舉值
這是Status
枚舉:
public enum StatusType
{
Pending,
Approved,
Cancelled
}
我需要查詢的分貝(約會)行的列表,其中Status
列設置爲'Pending'
並將它傳遞給一個列表變量。
如何在使用C#的Visual Studio中執行此操作?
IEnumerable<Appointment> AppQuery = from appointment in _appointmentData.GetAll()
where appointment.Status????
select appointment;
注意:_appointmentData.GetAll()
列出了數據庫中的整個行。
你試過'那裏appointment.Status == StatusType.Pending' – mariocatch
是什麼狀態在你的數據類型數據庫? – Sherlock