linq-group

    1熱度

    2回答

    我有我的下面的代碼幾個問題。 var groupedItems = inputFiles.GroupBy(q => q.Name.ToLower().Split('_').ElementAt(2)); string currentNo = ////value retreived from someMethod; if (string.IsNullOrEmpty(curren

    0熱度

    1回答

    我有2列clmAge和clmPrice一個表像 Age Price 1 , 100 2 , 100 3 , 150 4 , 150 5 , 100 6 , 100 7 , 100 價格可能會針對不同年齡一樣,我需要的是對所有連續的年齡最小和最大年齡的DataTable以相同的價格。我需要我的組數據,以便我的結果是這樣的: 1-2 , 100 3-4 , 150 5-7 , 1

    -1熱度

    2回答

    我不知道哪裏是錯誤的,爲什麼它說,不包含ImporteSolicitado,interesesDemora和importeReintegro的確定指標時,他們的C colums和d的最後一個 var importes = (from c in _context.ReintegroSolicitado join d in _context.ReintegroRecibido on c

    0熱度

    1回答

    我有三個表(「評級」,「評論」和「用戶」)。一個評級可以有多個評論。一條評論屬於一個用戶。 到目前爲止,我有這個工作正常的LINQ語句。 from rating in Ratings join comment in Comments on rating.ID equals comment.RatingID join user in Users on comment.UserID equal

    1熱度

    1回答

    有一個集合: List<Tuple<string, string, int>> sales = new List<Tuple<string, string, int>> { Tuple.Create("Store 1", "Product 1", 1000), Tuple.Create("Store 2", "Product 2", 2000), Tupl

    0熱度

    1回答

    我在查詢2個表,Club和LinkClubUser。我想要從LinkclubUser的最後一個日期檢索用戶分配的最後一個分會。 我有正確的SQL查詢: select top 1 max(A.DataInscricao), A.Nome, A.NomeNaCamisola, A.NumNaCamisola, A.Posicao, A.Situacao from Clu

    2熱度

    1回答

    我有一些實例需要返回使用.GroupBy的數據列表。除了日期和整數之外,我還需要返回布爾值,這似乎無法完成。一個例子模型: public class HolidayCheckList { public DateTime startDate { get; set; } public DateTime endDate { get; set; } public int s

    2熱度

    1回答

    選擇按日期分組多計數我有一個表,看起來大致是這樣的: Date | Category | Name 01/02/2014 | A | Foo 01/02/2014 | B | Bar 02/02/2014 | A | Baz 02/02/2014 | A | Bla 我想建立產生像這樣的查詢: Date | CategoryACount | CategoryBCount

    1熱度

    1回答

    我在C#(RoomId,WallTypeId,WallTypeArea)中有我需要由兩個組合的原始列表,然後總結第三個。對於每個房間和牆壁我需要一個區域。 (每個房間有多少牆型。)我可以用幾個foreach循環來完成它。但是有很多房間,每個牆都被分成很多子表面。 有誰知道更高效的linq和/或IEnumerable方法來做到這一點? 這裏是我的階級和List<RawSurfaceData>: pu

    0熱度

    1回答

    在Linq to SQL中,可以按周工作週數進行分組,而不是從每年的幾周開始,例如1/1/2016在12周的同一周/ 31/2015這是不同一週的一年(但它是在同一個物理周,如果你願意)