-2
I need to check the amount of days that have passed since the day a task was created, for example, if I start a task today I get the following date back:
2017-08-30 11:38:52.168
I need to do a control so that in 04 days, for example, the user is warned that he is with a delayed task, my need then, is to know how I can check via the system date if already passed the four days, the logic would be dataAtual - dataCriacao = 4
or ou dataCricao + 4 = dataAtual
but I’m not able to accomplish that.
It worked that way
– R.Santos