Добрый день! Скажите пожалуйста, статьи не появились? Если да, то где их можно посмотреть?Andrew писал(а):.. в течение пары дней появятся две статьи по работе с ВО ..
Спасибо.
Добрый день! Скажите пожалуйста, статьи не появились? Если да, то где их можно посмотреть?Andrew писал(а):.. в течение пары дней появятся две статьи по работе с ВО ..
Прочитать статьи можно здесь http://www.reportingfor.info/en/news.php?extend.14А все-таки, когда можно ждать появления каких-то статей об использовании бизнес-объектов в отчетах ?
Код: Выделить всё
///
/// Registers an object in the Data Store.
///
/// A data name in the Data Store.
/// The object for registration.
public void RegData(string name, object data);
///
/// Registers an object in the Data Store.
///
/// DataTable name in the Data Store.
/// DataTable for registration.
public void RegData(string name, DataTable dataTable);
///
/// Registers the DataTable in the Data Store.
///
/// The DataTable for registration.
public void RegData(DataTable dataTable);
///
/// Registers all DataTables and DataRelations which are in the specified DataSet in the Data Store.
///
/// Prefix for object registration.
/// DataSet for registration.
public void RegData(string name, DataSet dataSet);
///
/// Registers all DataTable and DataRelation which are in the specified DataSet in the Data Store.
///
/// DataSet for registration.
public void RegData(DataSet dataSet);
///
/// Registers DataView in the Data Store.
///
/// DataView name in the Data Store.
/// DataView for registration.
public void RegData(string name, DataView dataView);
///
/// Registers DataView in the Data Store.
///
/// DataView for registration.
public void RegData(DataView dataView);
///
/// Registers SqlConnection in the Data Store.
///
/// SqlConnection name in the Data Store.
/// SqlConnection for registration.
public void RegData(string name, SqlConnection connection);
///
/// Registers OleDbConnection in the Data Store.
///
/// OleDbConnection name in the Data Store.
/// OleDbConnection for registration.
public void RegData(string name, OleDbConnection connection);
///
/// Registers OdbcConnection in the Data Store.
///
/// OdbcConnection name in the Data Store.
/// OdbcConnection for registration.
public void RegData(string name, OdbcConnection connection);
///
/// Registers an object in the Data Store.
///
/// A data name in the Data Store.
/// A data alias in the Data Store.
/// The object for registration.
public void RegData(string name, string alias, object data);
///
/// Registers an object in the Data Store.
///
/// A data name in the Data Store.
/// A data alias in the Data Store.
/// DataTable for registration.
public void RegData(string name, string alias, DataTable dataTable);
///
/// Registers all DataTables and DataRelations which are in the specified DataSet in the Data Store.
///
/// A data name in the Data Store.
/// A data alias in the Data Store.
/// DataSet for registration.
public void RegData(string name, string alias, DataSet dataSet);
///
/// Registers DataView in the Data Store.
///
/// A data name in the Data Store.
/// A data alias in the Data Store.
/// DataView for registration.
public void RegData(string name, string alias, DataView dataView);
///
/// Registers SqlConnection in the Data Store.
///
/// A data name in the Data Store.
/// A data alias in the Data Store.
/// SqlConnection for registration.
public void RegData(string name, string alias, SqlConnection connection);
///
/// Registers OleDbConnection in the Data Store.
///
/// A data name in the Data Store.
/// A data alias in the Data Store.
/// OleDbConnection for registration.
public void RegData(string name, string alias, OleDbConnection connection);
///
/// Registers OdbcConnection in the Data Store.
///
/// A data name in the Data Store.
/// A data alias in the Data Store.
/// OdbcConnection for registration.
public void RegData(string name, string alias, OdbcConnection connection);
///
/// Registers the DataCollection in the DataStore of the report.
///
/// DataCollection for registration.
public void RegData(StiDataCollection datas);
///
/// Registers the business object in the report.
///
/// Name of the registered business object.
/// Business object.
public void RegBusinessObject(string name, object value);
///
/// Registers the business object in the report.
///
/// Name of the category in which registered business object will be placed in report dictionary.
/// Name of the registered business object.
/// Business object.
public void RegBusinessObject(string category, string name, object value);
///
/// Registers the business object in the report.
///
/// Name of the category in which registered business object will be placed in report dictionary.
/// Name of the registered business object.
/// Alias of the registered business object.
/// Business object.
public void RegBusinessObject(string category, string name, string alias, object value);
///
/// Registers list of business objects in business objects store of specified report.
///
/// List of business objects.
public void RegBusinessObject(List businessObjects);