Interface ISQLWrapperChain
Inherited Members
Namespace: LemonEdge.API.Entities.Reporting
Assembly: LemonEdge.API.dll
Syntax
[EntityDefinition(EntityID.SQLWrapperChain, "dbo.LT_SQLWrapperChains", "SQLWrapperChain", LabelColumn = "Name", IsStandingDataEntity = true, HelpURL = "help/enterprise-data-tools/reporting/sql-wrappers/intro.html")]
[DefaultEntityIcon(ImageType.Link)]
public interface ISQLWrapperChain : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
ChainedSQLWrapperID
[Key] Links to ISQLWrapper. The sql wrapper being chained to.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.SQLWrapper, "ID", SingleJoinType.One, "Chained SQL Wrapper", "Chained From", DeleteWithRelationship = false, PartOfParentSet = false, LinkToItemInSet = true, InheritPermissions = false)]
Guid ChainedSQLWrapperID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Description
A user friendly description of this SQL Wrapper Chain
Declaration
[EntityProperty(SQLType.NVarChar, 2000, true)]
[EntityDescription("A user friendly description of this sql wrapper chain.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
[Key] The unique user friendly name of this SQL Wrapper Chain
Declaration
[EntityProperty(SQLType.NVarChar, 500, false)]
[EntityKeyProperty]
[EntityDescription("The unique name of this sql wrapper chain.")]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
SQLWrapperID
[Key] Links to ISQLWrapper. The parent sql wrapper this belongs to.
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityKeyProperty]
[EntityRelationship(EntityID.SQLWrapper, "ID", SingleJoinType.One, "SQL Wrapper", "Chains", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true)]
Guid SQLWrapperID { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Type
The use of the sql wrapper being chain to.
Declaration
[EntityProperty(SQLType.SmallInt, false)]
[EntityDescription("The use of the sql wrapper being chain to.")]
SQLWrapperChainType Type { get; set; }
Property Value
Type | Description |
---|---|
SQLWrapperChainType |