Interface IReportBase
Any LemonEdge entity interface that inherits this, means it is acquires all the functionality of a report and can be used in IQueryRunner
See https://help.lemonedge.com/reports/ for more info
Inherited Members
Namespace: LemonEdge.API.Entities.Reporting
Assembly: LemonEdge.API.dll
Syntax
[IsBaseInterface]
public interface IReportBase : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties, ISetCopier, IUserSpecific, IHasVersion
Properties
Description
A user friendly description for this report
Declaration
[EntityProperty(SQLType.NVarChar, 2500, true)]
[EntityDescription("A user friendly description for this report.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
The unique name of this report.
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityDescription("The unique name of this report.")]
[Required]
[EntityKeyProperty]
[Unique(MergeWithAnyOtherUniqueProperties = true)]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |