I have written a code in .net using mvc and entity framework:
@{
List<DAL.Project> oldProjectList = new BL.ProjectLogic().getProjects(userName).Where(s => s.Status == "Not Active").ToList();
}
@foreach (DAL.Project p in oldProjectList)
{
{some code}
}
The first line of code should return a list of "Not Active" projects, and it actually works. but it only works on users that have "Non Active" projects, other users get an exception in the foreach line saying:
[InvalidOperationException: Sequence contains no elements]
How to fix it? Thanks
Are you sure that the exception is being thrown in your foreach? In this small reproducible example, I can't get the same error while executing: