91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c# distinctby能處理嵌套對象嗎

c#
小樊
81
2024-11-28 17:41:14
欄目: 編程語言

C# 的 LINQ 方法 DistinctBy 不能直接處理嵌套對象。但是,你可以通過使用 SelectDistinct 方法組合來實現處理嵌套對象的功能。以下是一個示例:

假設你有一個類 Person,其中包含一個嵌套的 Address 類:

public class Address
{
    public string Street { get; set; }
    public string City { get; set; }
}

public class Person
{
    public string Name { get; set; }
    public Address Address { get; set; }
}

現在,假設你有一個 List<Person>,你想要根據 Address 類的屬性(例如,StreetCity)獲取不重復的 Person 對象。你可以這樣做:

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        List<Person> people = new List<Person>
        {
            new Person { Name = "Alice", Address = new Address { Street = "1st", City = "New York" } },
            new Person { Name = "Bob", Address = new Address { Street = "2nd", City = "New York" } },
            new Person { Name = "Charlie", Address = new Address { Street = "1st", City = "Los Angeles" } },
            new Person { Name = "David", Address = new Address { Street = "3rd", City = "New York" } }
        };

        var distinctPeople = people
            .Select(p => new
            {
                p.Name,
                p.Address.Street,
                p.Address.City
            })
            .Distinct();

        foreach (var person in distinctPeople)
        {
            Console.WriteLine($"Name: {person.Name}, Street: {person.Street}, City: {person.City}");
        }
    }
}

在這個示例中,我們首先使用 Select 方法創建一個新的匿名對象,其中包含 NameStreetCity 屬性。然后,我們使用 Distinct 方法根據這些屬性獲取不重復的對象。最后,我們遍歷 distinctPeople 列表并輸出結果。

0
修水县| 宣城市| 麻江县| 黄浦区| 普兰店市| 沈阳市| 崇文区| 昆明市| 毕节市| 保亭| 当涂县| 城口县| 玛纳斯县| 资兴市| 南宁市| 莎车县| 长治县| 兴安盟| 芮城县| 临海市| 湖北省| 洪江市| 高唐县| 浦城县| 康平县| 杂多县| 宣武区| 高台县| 沅江市| 海林市| 布尔津县| 西畴县| 盐城市| 阿坝| 宁明县| 吉林市| 镇原县| 元氏县| 彭阳县| 东台市| 理塘县|