Class InlineInstanceDataConnectionDescription
Description of a singlet inline instance data control item
Inheritance
System.Object
InlineInstanceDataConnectionDescription
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Framework.Extension.UI
Assembly: Simplic.Framework.Extension.dll
Syntax
public class InlineInstanceDataConnectionDescription
Constructors
| Improve this Doc View SourceInlineInstanceDataConnectionDescription()
Create new IIDC description
Declaration
public InlineInstanceDataConnectionDescription()
Properties
| Improve this Doc View SourceDeleteStatement
Update statement, os optional to set
Declaration
public string DeleteStatement { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FillStatement
Fill-statement
Declaration
public string FillStatement { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Examples
SELECT f.FileDisplayName as ItemContent, f.Guid as ItemId FROM IT_FileManagement f
JOIN IT_Document_Classification_QM_Chapter ch on ch.ChapterFileGuid = f.Guid
WHERE ch.DocumentGuid = '[GroupId]'
|
Improve this Doc
View Source
InsertStatement
Insert statement, is optiontal to set.
Declaration
public string InsertStatement { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ItemBoxIdReturnColumn
Name of the itembox return column
Declaration
public string ItemBoxIdReturnColumn { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ItemBoxName
Name of the itembox to use
Declaration
public string ItemBoxName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ItemBoxReturnColumn
Name of the return-column of the itembox
Declaration
public string ItemBoxReturnColumn { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LabelText
Label text
Declaration
public string LabelText { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LookupStatement
Lookup statement
Declaration
public string LookupStatement { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Examples
SELECT
f.Guid as ItemId,
f.FileDisplayName as ItemContent
FROM IT_FileManagement f
JOIN IT_FileManagement_Classification_QM cl on cl.FileGuid = f.Guid
WHERE f.FileDisplayName like '%[LookupString]%'
|
Improve this Doc
View Source
StackName
Name of the stack to create the connections with
Declaration
public string StackName { get; set; }
Property Value
Type | Description |
---|---|
System.String |