Подтвердить что ты не робот

Способ LINQ для получения элементов между двумя индексами в списке

У меня есть список объектов Employee. Мне нужно выбрать только два объекта-работника между двумя индексами (на основе начальных и конечных переменных). Следующий код работает нормально, но не в LINQ. Каков наилучший код LINQ для этой цели?

Примечание. Я ищу Method Chain

КОД

public static class DatabaseSimulator
{

    public static List<Employee> GetData(string name, int index, int pageSize)
    {
        List<Employee> searchResult = new List<Employee>();
        List<Employee> employeesSource = SearchEmployees(name);

        int start = ((index - 1) * pageSize)  + 1;
        int end = (index * pageSize);
        for (int i = start; i <= end; i++)
        {
            if (searchResult != null)
            {
                int listCount = employeesSource.Count;
                for (int x = 0; x < listCount; x++)
                {
                    if (x == i)
                    {
                        searchResult.Add(employeesSource[x]);
                        break;
                    }
                }
            }
        }

        return searchResult;

    }


    private static List<Employee> SearchEmployees(string name)
    {
        List<Employee> employees = GetEmployees();
        return employees.Where(r => r.Name == name).ToList();
    }

    private static List<Employee> GetEmployees()
    {
        List<Employee> employees = new List<Employee>();
        int i = 0;
        for (i = 0; i <= 100; i++)
        {
            Employee emp = new Employee();
            emp.EmpID = i;
            if (i % 2 == 0)
            {
                emp.Name = "Divisible by 2";
            }
            else if  (i % 3 == 0)
            {
                emp.Name = "Divisible by 3";
            }
            else if (i % 5 == 0)
            {
                emp.Name = "Divisible by 5";
            }
            else if (i % 7 == 0)
            {
                emp.Name = "Divisible by 7";
            }
            else 
            {
                emp.Name = "Other -- "+ i.ToString();
            }

            employees.Add(emp);
        }

        return employees;
    }

}

клиент

List<Employee> searchResult = DatabaseSimulator.GetData("Divisible by 2", 2, 2);
4b9b3361

Ответ 1

Вы можете использовать конструкцию list.Skip(startIndex).Take(endIndex - startIndex).

где

startIndex: индекс первого элемента для выбора

endIndex: есть и индекс последнего элемента для выбора