Reading conflicting opinions on using SQL session state vs custom db table in MVC to store user data across page requests?
What are the advantages and disadvantages to each method? Why should I pick one method over the other.
So far it seems a custom db table is the best solution because it doesn't time out, plus it would be strongly typed using the Entity Framework.
Am I missing something?