我有5個數據在我的列表中。使用實體框架在列表中獲取行索引
MYLIST
所以我想知道,我如何能得到選擇的ID的行號?
var MyProductId= 135;
var SelectedDataRowNumber = context.SP_MyList.ToList()
.Where(s=>s.Id==MyProductId)
.FirstOrDefault();
作爲實例, 列表有5個DATAS像下面,
Id-Name
6,Computer
135,KeyBoard
68,Mouse
98,Telephone
213,Laptop,
MyProductId
是135
所以它與Keyboard.It配襯是行計數數(索引)必須是 「1」,因爲0是計算機。
我該如何獲得選定ID的行數(索引)數量?
你是什麼意思的行號?您可以添加一些示例數據,列表中的對象是什麼樣的? – Marco
我更新請檢查 – user3042186
重複http://stackoverflow.com/a/2471631/665689 – Ingo