Date.Month和Date.Day有來自客戶的難度查詢的生日(日期時間)如何在MongoDB中
Query<Customer>.Where(a => a.Birthday.Month == startDate.Month && a.Birthday.Day == startDate.Day)
我得到這個消息:
無法確定的序列化信息表達: a.Birthday.Month。
[更新]
型號:
public class Customer
{
public ObjectId Id { get; set; }
public string Firstname { get; set; }
public string Lastname { get; set; }
public DateTime Birthday { get; set; }
}
我想我們需要更多關於客戶模型的細節來幫助。 – idbentley
更新了問題。謝謝 – Lee