Reading conflicting opinions about using SQL session state and user db table in MVC to store user data through page requests?
What are the advantages and disadvantages of each method? Why should I choose one method over another.
So far, it seems that a regular db table is the best solution, because it does not expire, plus it will be strongly typed using the Entity Framework.
Did I miss something?
source
share