I want write this code this part of my code
var today = DateTime.Now;
var todayString = today.ToShortDateString();
List<FB> fBList = _context.FBs.ToList();
fBList = fBList.Where(x => DbFunctions.DiffMinutes(x.FB_CDate, x.FB_LTDate) > 20 ).ToList();
and this part return me this
'DbFunctions.DiffMinutes(x.FB_CDate, x.FB_LTDate) > 20' threw an exception of type 'System.NotSupportedException'