I have simple question. I'm now thinking about creating custom membership provider for my app, because using separate tables for membership and for rest of the app is not that good idea.. not to mention some data is simply replicated along tables..
What I want to know, if I also have to reimplement other functionaly like checking if user is online, and so on. Or it's just enough if i copy part of db structure and implement provider ?
UPDATE!
What I really want to know is the methods from MembershipUser (like checking IF user IsOnline and so on), will work on custom database schema.
I know how to implement custom provider, I just want to know if I have more tedious work implementing functionality from other Membership* classes.