CustomerテーブルからcustomerIdを取得しようとしています。私はそれを作るしようとすると、MVC3 LINQを通じてint値を選択
はしかし、それはエラーがint型 『から『System.Linq.Iqueryable』「」暗黙的にタイプを変換できません』と言ってい
どのように私は得意先取得できますか?
ありがとうございます。
ここに私のコーディングがあります。
int customerId = from a in db.Customer
where a.userName == customerName
select a.customerId;
//it has error in here.
order.customerId = customerId;
'customerID'が一意である場合、' First() 'ではなく' Single() 'でなければなりません。 – MarcinJuraszek
ありがとう!メイト – wholee1