Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Inherit a class from a MMBusiness inherited class.
Message
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Miscellaneous
Thread ID:
00884365
Message ID:
00885113
Views:
16
Hello Mr McNeish,

I know that handle multiple tables in a single business object, and we use our project allready. Your help documents are good and explicit. I dont have any question in this situation,thank you.

I am wondering to inherit a class which inherits MMBusiness base class
if its possible.

Forexample;
We have a table Person which has got three fields PersonPK, FName, LName.
And our business class look like below.

class person : ABusiness /* ABusiness Inherited from MMBusiness */
{
public person()
{
this.TableName = "Person" ;
this.PrimaryKey = "PersonPK" ;
}
}

And second,we have another table VIPerson which has got 4 fields VIPPK, SirNamePrefix, FName, LName. And object model VIPerson inherits from Person, but not use database tables relationship (parent-child rel).

This is a question, can we write new business class look like below?

class VIPerson : person /* person Inherited from MMBusiness */
{
public person()
{
this.TableName = "VIPerson" ;
this.PrimaryKey = "VIPPK" ;
}
}

I want to discuss this desing, any idea?

Regards.
we can work iT ouT
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform