I need to check the number of days that have passed since the day a particular 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 make a control so that in 4 days, for example, the user is warned that he has a late task, so my need is to know how I can check via system date if the four days have already passed , the logic would be dataAtual - dataCriacao = 4
or ou dataCricao + 4 = dataAtual
but I'm not able to do this.