주어진 시나리오에는 그리드 표시를 위해 평면화해야 하는 열거형(TypeCode) 및 User 개체가 포함된 컬렉션이 있습니다. 이를 달성하려면 foreach 접근 방식을 시도할 때 어려움에 직면하게 됩니다. 다행스럽게도 LINQ는 보다 세련된 솔루션을 제공합니다.
LINQ를 사용하면 다음과 같이 데이터를 피벗할 수 있습니다.
// Assuming you have a collection of items var data = new[] { new { TypeCode = 1, User = "Don Smith" }, new { TypeCode = 1, User = "Mike Jones" }, new { TypeCode = 1, User = "James Ray" }, new { TypeCode = 2, User = "Tom Rizzo" }, new { TypeCode = 2, User = "Alex Homes" }, new { TypeCode = 3, User = "Andy Bates" } }; // Group the data by TypeCode to form columns var columns = from item in data group item by item.TypeCode; // Get the total number of rows based on the maximum number of items in each column int rows = columns.Max(c => c.Count()); // Pivot the data into a two-dimensional array for the grid string[,] grid = new string[rows, columns.Count()]; int rowIndex = 0; foreach (var column in columns) { foreach (var item in column) { grid[rowIndex, column.Key - 1] = item.User; rowIndex++; } rowIndex = 0; } // Print the pivot table Console.WriteLine("Pivot Table:"); for (int i = 0; i < rows; i++) { for (int j = 0; j < columns.Count(); j++) { Console.Write(grid[i, j] + "\t"); } Console.WriteLine(); }
이 구현은 데이터를 다음과 같이 그룹화합니다. TypeCode를 사용하여 열을 형성하고, 각 열의 최대 항목 수를 기준으로 전체 행을 계산하고, 데이터를 그리드에 적합한 2차원 배열로 피벗합니다. 디스플레이.
위 내용은 LINQ는 그리드 표시를 위해 열거형 및 사용자 개체 컬렉션에서 데이터를 효율적으로 피벗할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!