Class ReportQueryRunnerHandler
Indicates that IReport can be used in a IQuery
Implements
Inherited Members
Namespace: LemonEdge .API.Core.Reporting.Queries
Assembly: LemonEdge.API.dll
Syntax
public class ReportQueryRunnerHandler : IQueryRunnerHandler
Constructors
ReportQueryRunnerHandler()
Declaration
public ReportQueryRunnerHandler()
Properties
CustomHandlerInstanceItems
Not implemented
Declaration
public IEnumerable<KeyValuePair<Guid, string>> CustomHandlerInstanceItems { get; }
Property Value
Type | Description |
---|---|
IEnumerable<Key |
HandlerName
The user friendly name for this type of query runner handler
Declaration
public string HandlerName { get; }
Property Value
Type | Description |
---|---|
string |
QueryRunnerHandlerTypeID
Indicates this works for the IReport entity type
Declaration
public Guid QueryRunnerHandlerTypeID { get; }
Property Value
Type | Description |
---|---|
Guid |
RequiresHandlerInstance
Requires a handler instance - Entity Reports
Declaration
public QueryRunnerHandlerInstanceType RequiresHandlerInstance { get; }
Property Value
Type | Description |
---|---|
Query |
SettingsType
Declaration
public Type SettingsType { get; }
Property Value
Type | Description |
---|---|
Type |
Methods
GetParameters(Guid?, UserInfo, IReadOnlyCache, IEntityUpdater)
Returns all the parameters against a given IReport id
Declaration
public Task<IEnumerable<ISQLTypeWrapper>> GetParameters(Guid? forHandlerID, UserInfo user, IReadOnlyCache cache, IEntityUpdater updater)
Parameters
Type | Name | Description |
---|---|---|
Guid? | forHandlerID | The id of a IReport |
User |
user | The logged in user this is running for |
IRead |
cache | A local cache |
IEntity |
updater | A context for fetching items |
Returns
Type | Description |
---|---|
Task<IEnumerable<ISQLType |
All the parameters against a given IReport id |