从列表

时间:2016-07-28 16:15:39

标签: c# entity-framework linq c#-4.0

我正在尝试使用具有2个属性的列表中的LINQ检索月份名称和年份,而不重复月份和年份的名称。

public class Record
{
    public int Id { get; set; }
    public DateTime Date { get; set; }
}

DateTime d1 = new DateTime(2015, 1, 14);
DateTime d2 = new DateTime(2016, 3, 12);
DateTime d3 = new DateTime(2016, 4, 17);
DateTime d4 = new DateTime(2015, 5, 19);
DateTime d5 = new DateTime(2016, 6, 10);

List<Record> dates = new List<Record>
{
    new Record { Id= 1, Date = d1 },
    new Record { Id= 2, Date = d2 },
    new Record { Id= 3, Date = d3 },
    new Record { Id= 4, Date = d4 },
    new Record { Id= 5, Date = d5 }
};

//Month should be in string format (January,June, etc)
// Get Year and Months from that list withour repeating the names 
//List<string> months =
//List < string > years =

2 个答案:

答案 0 :(得分:4)

几个月并使用Linq:

 List<string> months = dates.Select(d => d.Date.ToString("MMMM"))
                            .Distinct()
                            .ToArray();

有关月份名称的ToStirng格式的信息,请参阅MSDN here.

多年来:

List<string> years = dates.Select(d => d.Date.Year.ToString())
                          .Distinct()
                          .ToArray();

虽然目前尚不清楚您希望如何查看年份列表。

有关Distinct的信息,请访问MSDN here.

答案 1 :(得分:2)

使用扩展方法来简化它(取自here):

static class DateTimeExtensions
{
    public static string ToMonthName(this DateTime dateTime)
    {
        return CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName(dateTime.Month);
    }
}

你可以这样做:

var months = dates.Select(r => r.Date.ToMonthName())
    .Distinct();

var years = dates.Select(r => r.Date.Year)
    .Distinct();

请注意,我在这里给出了int年,如果你想要字符串,那么只需添加ToString()