我正在从事物业管理申请。我有一个带{<1}}列的表
payment
我遇到的挑战是生成accountId, startPaymentDate, NextPaymentDate, EndPaymentDate, CurrentPaymentDate
。
此NextPaymentDate
会在NextPaymentDate
之后立即生成,并且是每月一次。例如,如果当前付款日期为1-04-2017,则应将CurrentPaymentDate
和accountId
的下一行的表格更新为1-05-2017。
由于
答案 0 :(得分:0)
假设CurrentPaymentDate
的数据类型为DateTime
且您使用的日期格式为dd / MM / yyyy,您应该只能使用以下内容:
NextPaymentDate = CurrentPaymentDate.AddMonths(1);