This is not a good idea.
The main reason for that is the way ORMappers works - they don't like it when you mix objects from different contexts. And this would happen in the scenario you propose - you have an object in the session, created by a different context your next (and following) requests use. Sonner or later you would start to get exceptions.
Personally I prefer an approach where a simple object containing the Customer's ID (and probably other attributes) is stored in a session (or in the custom data section of the forms cookie) and I wrap the access to the customer object in a simple statement which involves the Items container:
(a production code would require few checks here and there to be more defensive):
const string CUSTOMERITEM = "customeritem";
public Customer Current
{
get
{
if ( HttpContext.Current.Items[CUSTOMERITEM] == null )
{
int id = retrieve_the_id;
using ( DbContext ctx = GetCurrentDbContext() )
{
HttpContext.Current.Items.Add( CUSTOMERITEM, ctx.Customers.FirstOrDefault( c => c.ID == id );
}
}
return (Customer)HttpContext.Current.Items[CUSTOMERITEM];
}
}
Items container lasts only for the time of one request. The snippet above makes sure that the object is loaded only once per request.
Of course, this comes with a price of one additional query per request comparing to your approach. But the advantage is that you never mess up database contexts.
Note that there are some business processes which don't require the Customer object but you can pass the customer's ID directly and use in queries:
public IEnumerable<Order> CustomerOrders( int CustomerID )
{
// use the customer id directly, without first loading the customer object
}