I'm using the membership and role provider code from the Microsoft SQLProvider and SQLRoleProvider samples, and I'm getting a little overwhelmed with exactly how I can integrate my own schema into the source.
The GetAllUsers method, for example, loads data from specific tables in the ASP.NET database and puts them into a very specific data structure. My tables look nothing like that.
Do I have to adapt my tables to includes those fields, or can I substitute with my own structure?
In other words, how closely must I conform to the interfaces of the procs that the SQL Provider implements? Those procs all have a pagesize and pagenumber parm, too.