Skip to main content
A newer version of this page is available. .

SqlDataSource.ConnectionName Property

Specifies the name of a data connection in the App.config file.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v21.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.Design

Declaration

[DefaultValue(null)]
[LocalizableCategory(DataAccessStringId.PropertyGridConnectionCategoryName)]
public string ConnectionName { get; set; }

Property Value

Type Default Description
String null

A String value that specifies the data connection name in the App.config file.

Remarks

If you specify a data connection with the ConnectionName, the SqlDataSource.ConfigureDataConnection event does not fire.

To change connection parameters at runtime, create and register a service that implements the IConnectionProviderService interface.

See Also