Hi,
LLBLGen Pro Version: 2.0
SQLServer : 2005
.NET : 2005
I'm working on a Domain Model Architecture where my SQLDatabase replicates the architecture class model.
I have a Base Abstract Class (X) and Classes A, B & C are deriving from X and have a 1:1 mapping on the Pk of X.
Like how in the TwoClass Scenario LLBL is deriving the Entity Class from EntityBase Class, I am using a Single Class Scenario (General) to acheive the same like
Public abstract class X : XEntity
{
...
}
Public class A : X
{
...
}
My ASPX Page
public partial class MyPage : UI.Page
{
protected void Page_Init(object sender, EventArgs e)
{
//To Do
How to create and instance of A with all the AEntity features
}
}
Waiting for your feedback
Many Regards,
Ravi K. Kalyan