|
Hi;
I walked thru the tutorials and started into the other docs and IdeaBlade seems to be a outstanding product. I have not yet seen anything which quite matches my environment so I have attempted to describe it below to see if and how IdeaBlade handles it. I hope that I have not over simplifed my table and class defs.
I have the following tables in my database
Table:Contact Columns: PrimaryKey EmailAddress Name PrimaryAddress ...
Table:Member Columns: PrimaryKey FK_Contact First_Name Middle_Name Last_Name Membership_Type ....
Table:Visitors Columns PrimaryKey FK_Contact Dateof1stVisit CallBackDesired
My object module look as follows where the Member and Visitor Classes derived from the Contact class matching the tables Definations from above:
public class Contact { public Guid PrimayKey; public string EmailAddress; public string Name; pubic string PrimaryAddress; .... }
public class Member : Contact { public Guid PrimayKey; public Guid FK_Contact; public string First_Name; public string Middle_Name; pubic string Last_Name; pubic string Membership_Type; .... }
public class Visitors : Contact { public Guid PrimayKey; public Guid FK_Contact; public string Dateof1stVisit; public string CallBackDesired; .... }
Does IdeaBlade support this model? What Do I need to do to ensure that all of the properties from the Contact Class appear in the Member and Visitor Classes?
I hope this is the correct forum for this question.
Thanks
Bernard.
|