I have an asp.net application in which I am using linq for data manipulation. While running, I get the exception \"Sequence contains no matching element\".
i
Maybe using Where() before First() can help you, as my problem has been solved in this case.
var documentRow = _dsACL.Documents.Where(o => o.ID == id).FirstOrDefault();