我正在尝试从 Customer 表中获取 customerId。
但是,当我尝试制作它时,它有错误说,'不能隐式地将类型'System.Linq.Iqueryable'转换为'int''
我怎样才能得到customerId?
谢谢你。
这是我的编码。
int customerId = from a in db.Customer
where a.userName == customerName
select a.customerId;
//it has error in here.
order.customerId = customerId;