Reading BO that is a property of a class


Author
Message
Ian Johnston
Ian Johnston
StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)
Group: StrataFrame Users
Posts: 77, Visits: 470
Is there a way to use a BO as a property on a class and read the data? I thought I saw a constuct like   string pn = ((this.LightBOname)+".light_com_port");

where LightBOName is a property on the subclass of System.IO.Ports.SerialPort

pn is assigned the string "LightBO1.light_com_port" instead of Com9.

 


Greg McGuffey
Greg McGuffey
Strategic Support Team Member (3.4K reputation)
Group: Forum Members
Posts: 2K, Visits: 6.6K
You would just create a property that has the type of your BO.
public LightBO LightBOname { get; set; }

They you have a strongly typed property that you can use like:
string pn = this.LightBOname.light_com_port;


You'd have to do the fill of the BO at the right time of course, but when doing that you again just access the fill method directly:
this.LightBOname.MyFillMethod();

Ian Johnston
Ian Johnston
StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)StrataFrame User (151 reputation)
Group: StrataFrame Users
Posts: 77, Visits: 470
Had to declare it as

public
BusinessObjects.Light_controlBO LightBOname

Worked great.

Thanks

 


Greg McGuffey
Greg McGuffey
Strategic Support Team Member (3.4K reputation)
Group: Forum Members
Posts: 2K, Visits: 6.6K
Glad you got it working!
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search