Class IgbEntityType
Describes an entity in the QueryBuilder.
An entity represents a logical grouping of fields and can have nested child entities.
Inheritance
System.Object
IgbEntityType
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbEntityType : BaseRendererElement, JsonSerializable
Constructors
IgbEntityType()
Declaration
Properties
ChildEntities
Optional child entities.
This allows building hierarchical or nested query structures.
Declaration
public IgbEntityType[] ChildEntities { get; set; }
Property Value
Fields
The list of fields that belong to this entity.
Declaration
public IgbFieldType[] Fields { get; set; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
SetNativeElement(Object)
Declaration
public void SetNativeElement(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
SetNativeElementAsync(Object)
Declaration
public Task SetNativeElementAsync(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
Implements