为什么我的LINQ查询返回零?

时间:2017-10-05 00:46:19

标签: c# wpf linq

我是LINQ的新手,无论我怎么努力让这两个查询工作,我总是以零为结果。我已经尝试了一切来计算一个月的营业日和总天数。 MDate绑定到日期选择器,BusinessDays绑定到文本框,TotalDaysInMonth绑定到另一个文本框。

有人可以帮我解决这些问题以显示所选月份的正确值吗? (例如9月:20个营业日,30天)

public class LocationViewModel : INotifyPropertyChanged
{

    public LocationViewModel()
    {    
        SetBusinessDays();
        SetTotalDaysInMonth();
    }

    public DateTime mDate = DateTime.Now;

    public DateTime MDate
    {
        get { return mDate; }
        set
        {
            if (value == mDate)
            {
                return;
            }
            else
            {
                mDate = value;
                OnPropertyChanged("MDate");

                SetBusinessDays();
                SetTotalDaysInMonth();
            }
        }
    }

    int _businessDays;

    public int BusinessDays
    {
        get { return _businessDays; }
        set
        {
            _businessDays = value;
            OnPropertyChanged("BusinessDays");
        }
    }

    int _totalDaysInMonth;

    public int TotalDaysInMonth
    {
        get { return _totalDaysInMonth; }
        set
        {
            _totalDaysInMonth = value;
            OnPropertyChanged("TotalDaysInMonth");
        }
    }


    private void SetBusinessDays()

    {
        int BusinessDays = Enumerable.Range(1, DateTime.DaysInMonth(MDate.Year, MDate.Month))
                            .Select(day => new DateTime(MDate.Year, MDate.Month, day))
                            .Count(d => d.DayOfWeek != DayOfWeek.Sunday &&
                                        d.DayOfWeek != DayOfWeek.Saturday);
    }

    private void SetTotalDaysInMonth()
    {
        int TotalDaysInMonth = Enumerable.Range(1, DateTime.DaysInMonth(MDate.Year, MDate.Month))
                            .Select(day => new DateTime(MDate.Year, MDate.Month, day))
                            .Count();
    }
}

谢谢。

1 个答案:

答案 0 :(得分:1)

在您的两种方法中,您要声明一个局部变量,而不是设置您的属性。在C#中,您不需要指定访问属性时的类型。删除方法中的int个文字。