SelectTransformEnableSubqueryOptimization Property |
Gets a value indicating whether this transform can be used to generate a single query.
Namespace:
Dundas.BI.Data.Transforms
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxpublic override bool EnableSubqueryOptimization { get; }Public Overrides ReadOnly Property EnableSubqueryOptimization As Boolean
Get
public:
virtual property bool EnableSubqueryOptimization {
bool get () override;
}abstract EnableSubqueryOptimization : bool with get
override EnableSubqueryOptimization : bool with get
Property Value
Type:
Boolean if provider is allowed to generate a single query; otherwise,
.
Remarks
Set to to disable generation of single SQL. This is useful to support
queries that cannot be used as a nested SELECT. For example, can be used to run stored procedures
using ODBC data provider.
See Also