Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
470 views
in Technique[技术] by (71.8m points)

linq query subtracting two datetimes not working with mongodb, c# and linq

I'm having trouble with a fairly simple query, using linq and mongodb:

List<GiactEnrichment> giactEnrichments = GiactEnrichmentClient.FindAll(x => x.ApplicationId == applicationId && (DateTime.Now.Subtract(x.QueryValidationDate).TotalDays <= days));

It gives me this exception:

{"2/4/2021 4:20:49 PM.Subtract({document}{QueryValidationDate}).TotalDays is not supported."}

After a bit of research i found this page: Link and they said that mongodb does not support these kinds of queries. Is there something i'm missing?

question from:https://stackoverflow.com/questions/66052535/linq-query-subtracting-two-datetimes-not-working-with-mongodb-c-sharp-and-linq

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...