Membership provider

Posts   
 
    
methodman
User
Posts: 194
Joined: 24-Aug-2009
# Posted on: 22-Oct-2009 15:47:35   

Hi there,

we're about to write our own membership provider. This provider will be used in a planed project, but we'd like to use it in every new project following this one.

The question is, should I generate a DAL only for this membership or should I integrate the provider enteties with the project entities in one DAL.

Walaa avatar
Walaa
Support Team
Posts: 14983
Joined: 21-Aug-2005
# Posted on: 23-Oct-2009 10:49:41   

The 2 options are valid.

Either use the a separate LLBLGen Project for the membership functionality. And if you need relations with yourbusiness entities, you will have to remap them in the other business specific LLBLGen project.

Or use a startup template LLBLGen project which contains the membership entities, which you use to start any new project, and this way you will have these entities integrated with your application entities, as youwill need some relations between the application domain entities and the membership entities.