When I try and load an entity by ID using:
Session.Load(21);
I get a 'no row with the given identifier exists'.
In my code I was checking for null like:
if(user == null)
How am I suppose to know if the row didn't exist, or how can I make it return null instead?