我知道如何获取交易数量,但如何获取特定月份发生的交易数量?
例如,如果我想要 2013 年 3 月的交易?
这是我当前的查询:
textBox_PaymentsCount.Text =
(from tot in _entities.Payments
where tot.CorporationId == _currentcorp.CorporationId &&
tot.Result != null
select tot).Count().ToString(CultureInfo.InvariantCulture);
我需要按字段最小化我的查询TransactionDateTime
。
我尝试指定第一天和最后一天,但最后一天因月而异。
有没有一种简单的方法可以做到这一点?