I have access to a database table that has been added as a datasource in project (A). Is there any way to refer to this database table from project (B) WITHOUT adding it to project (B)’s datasource?
i.e.
ProjB.databasetable.GetDataSetSchema
Any ideas would be really appreciated. Thanks guys!
The database table is not related to the project A in any way. The project A contains a datasource, probably a DataSet, that is used to access the table.
If you would like to reuse that dataset, just add a reference to ProjectA to ProjectB and ProjectA.MyDataSet will be there for you to use.