答案 0 :(得分:1)
var _objAllCustomerIds = null;
using (AdventureWorksEntities context = new AdventureWorksEntities())
{
_objAllCustomerIds = context.MyCustomers.Select(customer => customer.Id).ToList();
}
//其中AdventureWorksEntities是包含所有实体的DBcontent // MyCustomers是您的客户表的实体表示
答案 1 :(得分:0)
如果这是在你的.aspx文件中
然后在您的.aspx.cs文件中(假设您正在使用后面的代码),您将获得客户ID列表,然后将该列表绑定到此下拉列表。
其他问题的回答是否有帮助? How to bind the selected value of a DropDownList