私はコードを持っています:
public OrderTotalModel getOrderTotalModelByAgentID(string AgentIDS = null, DateTime? fromDate = null, DateTime? toDate = null) { var session = SessionManager.CurrentSession; TruncateAmount truncateAmount = new TruncateAmount(); string sql = @" SELECT sum(o.totalQuantity) TotalQuantity,sum(o.totalAmount) TotalAmount FROM Orders o join workflows w on w.Step = o.Status inner join Agents a on a.ID = o.AgentID where w.Step = o.Status and w.External = true and w.inactive = false and o.AgentId in (:agentIDS) and o.approved = true"; //Tu ngay if (fromDate.HasValue) { sql += " and Date(o.Created) >= Date(:fromDate)"; } // Den ngay if (toDate.HasValue) { sql += " and Date(o.Created) <= Date(:toDate)"; } var sqlQuery = session.CreateSQLQuery(sql) .AddScalar("TotalQuantity", NHibernateUtil.Double) .AddScalar("TotalAmount", NHibernateUtil.Double); sqlQuery.SetString("agentIDS", AgentIDS); if (fromDate.HasValue) { sqlQuery.SetDateTime("fromDate", (DateTime)fromDate); } if (toDate.HasValue) { sqlQuery.SetDateTime("toDate", (DateTime)toDate); } var result = sqlQuery.List<object[]>().Select(row => new OrderTotalModel() { TotalQuantity = (double)row[0], TotalAmount = truncateAmount.truncateAmt((double)row[1]), }).FirstOrDefault(); return result; }
fromDate # toDate を入力すると true が返されますが、fromDate == toDate を入力すると「System.NullReferenceException」というエラーが発生します。どのような問題があるのか わかりません、助けてください。