こんにちは、クエリで 2 つの DateTimes を減算し、defference を timeInterval と比較しようとしていますが、例外が発生します。
<Message>An error has occurred.</Message>
<ExceptionMessage>System.TimeSpan Subtract(System.DateTime)</ExceptionMessage>
<ExceptionType>System.NotSupportedException</ExceptionType>
C# コード:
producerRelations = producerRelationRepository.Query().Fetch(c => c.Order).
Where(c => c.Order.CreatedBy == login).
Where(c=>currentDate.Subtract(c.RouteUnit.DtStart.Value).TotalMinutes<timeInterval);
コードで日付を減算するにはどうすればよいですか?