Class InvoiceTypeTableInfo
Table 'invoice_type': A invoiceable item category (a product or service) that provides default invoice line values
Implements
Inherited Members
Namespace: SuperOffice.CRM.Data
Assembly: SoDataBase.dll
Syntax
[DatabaseTable("invoice_type")]
public class InvoiceTypeTableInfo : TableInfo, ICloneable
Remarks
An instance of this class represents one instance of this table in an SQL statement. In most
cases each table appears only once in a SELECT, but in cases where you need to self-join, or
there are multiple occurrences for other reasons (typically additional restrictions in the joins),
then you will need multiple instances.
Instances of this class are created by calling
Fields
DictionaryTableName
Conceptual name of table InvoiceType in the database dictionary: invoice_type
Declaration
public const string DictionaryTableName = "invoice_type"
Field Value
Type | Description |
---|---|
String |
Properties
Definition
Definition of the table as described in the deployed runtime dictionary
Declaration
public override SoTable Definition { get; }
Property Value
Type | Description |
---|---|
SoTable |
Overrides
Description
Field 'description' in table 'invoice_type': Dictionary type String[256], .NET type: String
A description of this invoice type
Declaration
public StringFieldInfo Description { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
DictionaryTableNumber
Table number for table InvoiceType in the database dictionary; potentially changes between databases, but always the same over the lifetime of any single database
Declaration
public int DictionaryTableNumber { get; }
Property Value
Type | Description |
---|---|
Int32 |
Flags
Field 'flags' in table 'invoice_type': Dictionary type UInt, .NET type: UInt32
Various flags
Declaration
public FieldInfo Flags { get; }
Property Value
Type | Description |
---|---|
FieldInfo |
InvoiceTypeId
Field 'id' in table 'invoice_type': Dictionary type PK, .NET type: Int32
Primary key
Declaration
public Int32FieldInfo InvoiceTypeId { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
LeftOuterJoin_InvoiceEntry_Type
Generated left outer join from the primary key InvoiceTypeId on this table, to InvoiceEntry.Type.
Declaration
public TargetedLeftOuterJoin<InvoiceEntryTableInfo> LeftOuterJoin_InvoiceEntry_Type { get; }
Property Value
Type | Description |
---|---|
TargetedLeftOuterJoin<InvoiceEntryTableInfo> |
Name
Field 'name' in table 'invoice_type': Dictionary type String[256], .NET type: String
A name for this invoice type
Declaration
public StringFieldInfo Name { get; }
Property Value
Type | Description |
---|---|
StringFieldInfo |
PricePrUnit
Field 'price_pr_unit' in table 'invoice_type': Dictionary type Int, .NET type: Int32
Price per unit
Declaration
public Int32FieldInfo PricePrUnit { get; }
Property Value
Type | Description |
---|---|
Int32FieldInfo |
RuntimeDefinition
Definition of the table as described in the deployed runtime dictionary
Declaration
[Obsolete("Use instance property Definition or static member DictionaryTableNumber", true)]
public static SoTable RuntimeDefinition { get; }
Property Value
Type | Description |
---|---|
SoTable |