Customizing the Data provider
Posted: Fri Feb 03, 2012 7:32 am
Hello,
Unfortunately, the modification of the web designer in this direction is not planned. You can modify the localization file, it stores the name of the data sources (in the Database section).
To turn off all services you can use the following code:
This feature will be available in the next prerelease build.
Thank you.
Unfortunately, the modification of the web designer in this direction is not planned. You can modify the localization file, it stores the name of the data sources (in the Database section).
To turn off all services you can use the following code:
Code: Select all
foreach (StiService service in StiConfig.Services)
{
if (service is StiDataAdapterService) service.ServiceEnabled = false;
}
Thank you.