xpo-devexpress-dot-xpo-dot-xpobjectsource-dot-setentitytype-x28-system-dot-type-x29.md
Gets the XPClassInfo object corresponding to the specified type and assigns this object to the XPObjectSource.EntityType property.
Namespace : DevExpress.Xpo
Assembly : DevExpress.DataAccess.v25.2.dll
NuGet Package : DevExpress.DataAccess
public void SetEntityType(
Type type
)
Public Sub SetEntityType(
type As Type
)
| Name | Type | Description |
|---|---|---|
| type | Type |
The persistent class type.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the SetEntityType(Type) method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-reporting-create-report-bound-to-xpobjectsource/CS/Form1.cs#L30
};
dataSource.SetEntityType(typeof(Products));
return dataSource;
xpoDataSource.ConnectionStringName = "NWindConnectionString";
xpoDataSource.SetEntityType(typeof(Category));
storage.RegisterDataSource("xpoDataSource", xpoDataSource.SaveToXml());
xpoDataSource.ConnectionStringName = "NWindConnectionStringSQLite";
xpoDataSource.SetEntityType(typeof(Category));
dataSourceStorage.RegisterDataSource("xpoDataSource", xpoDataSource.SaveToXml());
xpoDataSource.ConnectionStringName = "NWindConnectionStringSQLite";
xpoDataSource.SetEntityType(typeof(Category));
storage.RegisterDataSource("xpoDataSource", xpoDataSource.SaveToXml());
winforms-reporting-create-report-bound-to-xpobjectsource/VB/Form1.vb#L29
Dim dataSource As New XPObjectSource() With {.ConnectionStringName = "nwind"}
dataSource.SetEntityType(GetType(Products))
Return dataSource
xpoDataSource.ConnectionStringName = "NWindConnectionStringSQLite"
xpoDataSource.SetEntityType(GetType(Category))
dataSourceStorage.RegisterDataSource("xpoDataSource", xpoDataSource.SaveToXml())
xpoDataSource.ConnectionStringName = "NWindConnectionStringSQLite"
xpoDataSource.SetEntityType(GetType(Category))
storage.RegisterDataSource("xpoDataSource", xpoDataSource.SaveToXml())
See Also