How would you use Entity Framework (1.0) with ASP.Net Membership?

I’m trying to design an entity model for an application that uses ASP.Net membership for it’s user authentication. In most of the database schemas I create, records typically end up related to users via the UserId field on the aspnet_users table. That’s worked fine for me in the past, but now that I’m using EF, I’m having some conceptual issues with figuring out how I’m going to reference the user from an entity.

Managing Entity Framework ObjectContext in ASP.NET

I’m using the Entity Framework for an ASP.NET Web Forms application and I’m wondering how I should deal with ObjectContext and it’s lifetime.
For example, I have an InviteService class that manages invites such as creating and accepting invites. The class itself is in another project/namespace from the Web project.
An InviteUsers() method creates Invite entities for a list of users, calls a repository to save them to the database and mails each user an invite link.