Class DefaultDataSettings
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Settings for export of the default database data and web template data
public class DefaultDataSettings
- Inheritance
-
objectDefaultDataSettings
- Extension Methods
Remarks
This class is for internal use only and should not be used in custom code.
Properties
ChildDependencies
List of child dependencies for population of child count column(s) upon default data retrieval. The child dependencies must contain no loops except direct reference to object type itself.
public List<DefaultDataChildDependency> ChildDependencies { get; set; }
Property Value
ExcludedColumns
List of columns that should be excluded from the exported data.
public List<string> ExcludedColumns { get; set; }
Property Value
- List<string>
ExcludedPrefixes
List of code display name prefixes that will be excluded from default data. By default everything starting with 'test' is excluded.
public List<string> ExcludedPrefixes { get; }
Property Value
- List<string>
OrderBy
Order by columns
public string OrderBy { get; set; }
Property Value
- string
Where
Where condition
public string Where { get; set; }
Property Value
- string