Skip to main content
All docs
V25.1
  • DataSourceWizardSettings.AvailableDataSourceTypes Property

    Specifies data source types available in the Data Source Wizard.

    Namespace: DevExpress.DataAccess.UI.Wizard

    Assembly: DevExpress.DataAccess.v25.1.dll

    NuGet Package: DevExpress.DataAccess

    Declaration

    [DefaultValue(WizardDataSourceType.Default)]
    public WizardDataSourceType AvailableDataSourceTypes { get; set; }

    Property Value

    Type Default Description
    WizardDataSourceType Default

    A WizardDataSourceType enumeration value that specifies data source types available in the Data Source Wizard.

    Available values:

    Name Description
    Sql

    Identifies the SQL Database data source type.

    Object

    Identifies the Object data source type.

    EF

    Identifies the Entity Framework data source type.

    Excel

    Identifies the Microsoft Excel workbook / CSV file data source type.

    Federation

    Identifies the Data Federation data source type.

    Json

    Identifies the JSON data source type.

    XPO

    Identifies the XPO (eXpress Persistent Objects) data source type.

    MongoDB

    Identifies the MongoDB data source type.

    Default

    The default set of data source types is displayed in the Data Source Wizard.

    All

    All supported data source types are displayed in the Data Source Wizard.

    Property Paths

    You can access this nested property as listed below:

    Library Object Type Path to AvailableDataSourceTypes
    Cross-Platform Class Library ChooseConnectionPage<TModel>
    .DataSourceWizardSettings .AvailableDataSourceTypes
    ConnectionPropertiesPage<TModel>
    .DataSourceWizardSettings .AvailableDataSourceTypes
    WPF Controls ReportDesignerBase
    .DataSourceWizardSettings .AvailableDataSourceTypes
    .NET Reporting Tools XRDesignMdiController
    .DataSourceWizardSettings .AvailableDataSourceTypes

    Remarks

    The Default value does not include the XPO type. To display all supported data source types, set the AvailableDataSourceTypes property to All.

    See Also