Posts by Luiz Lelis • 41 points
3 posts
-
1
votes1
answer34
viewsA: ASP.NET Core: session duration
The session does not have an expiration like cookies, but it expires after a period of inactivity. The downtime starts to count after receiving the last request and each new request that passes…
-
0
votes1
answer30
viewsA: Applying Runtime Migrations . Net Core
If you are already doing the injection of ApplicationDbContext in the dependencies injection container by means of the services.AddDbContext<ApplicationDbContext>() inside ConfigureServices,…
-
0
votes1
answer43
viewsA: How to do multiple Where validations with Linq and Mongo in c#
What you described above is resulting in unwanted behavior because you always assign something new to the variable where (from now on let’s call this variable filter as this is the filter for your…