中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
东丽区| 兴山县| 莱州市| 高邮市| 京山县| 芮城县| 永年县| 常州市| 准格尔旗| 家居| 兴业县| 嫩江县| 澳门| 永吉县| 淳化县| 三门峡市| 静海县| 郑州市| 色达县| 临夏市| 北宁市| 余姚市| 大渡口区| 岗巴县| 盐山县| 武城县| 莱西市| 昆明市| 黄冈市| 安庆市| 介休市| 兴安盟| 澳门| 无为县| 河东区| 图木舒克市| 绿春县| 沙洋县| 康保县| 信宜市| 长岛县|