I am trying to create and maintain a Session while user is using an app, Angular side is pretty simple, i just can create a service which are going to contain Session data unless user choose to refresh where by data will be lost. like here: Maintaining Session through Angular.js
Since MVC web api is restfull, session will always be null (unless using some hacks like here: ASP.NET Web API session or something?, which i dont want to). Do i have to create a separate session table in DB and maintain it on user loggin/logout? or what would be the angular way to do it right?