Sure. You can create joins, etc. and custom properties and bring back anything that you want (for viewing only). However....if you want to update a join, then you will need to create a view and make it updatable before it will go both ways.
The reason I am asking is because I am using ULTRACHART and have the following code to pull back data from 2 tables. Can this be performed with the BBS? Do you have an example. I would like to clean up the form and talk to the BOs directely.
Thanks
Michael
****Chart Sample Code****
Dim ds As New SqlConnection(MicroFour.StrataFrame.Data.DataLayer.DataSources.Item(0).ConnectionString.ToString)
Dim
MainDataAdapterDA2.SelectCommand = Command2
MainDataAdapterDA2.Fill(MainDataTable2)
'Databind = Datatable,ValueColumn as String and Label Column as String)
MainSeries2.DataBind(MainDataTable2,
I am using UltraChart. I would like to connect to the BO and expose the fields? It is a simple composite chart. Been trying a few ways without success.