Class CurrencyHeadingLinkRecordDataExtensions
Inheritance
CurrencyHeadingLinkRecordDataExtensions
Assembly: SoDataBase.dll
Syntax
public static class CurrencyHeadingLinkRecordDataExtensions : Object
Methods
FromRecord(TargetedDataRecord<CurrencyHeadingLinkTableInfo>)
Declaration
public static CurrencyHeadingLinkRecordData FromRecord(this TargetedDataRecord<CurrencyHeadingLinkTableInfo> record)
Parameters
Returns
Examples
var s = S.NewSelect<DataRightTableInfo>( /* add meaningful restrictions here, or later */ );
/* add joins, return fields etc. as you wish */
s.ReturnFields.Add(s.Table.All);
var result = s.Records().Select(r => new { CurrencyHeadingLinkItem = r.FromRecord(), /* fetch other fields here */ });
FromSelect(TargetedSelect<CurrencyHeadingLinkTableInfo>)
From a TargetedSelect<CurrencyHeadingLinkTableInfo>, execute it and return an IEnumerable<CurrencyHeadingLinkRecordData> with the results
Declaration
public static IEnumerable<CurrencyHeadingLinkRecordData> FromSelect(this TargetedSelect<CurrencyHeadingLinkTableInfo> select)
Parameters
Returns
Examples
var s = S.NewSelect<DataRightTableInfo>( /* add meaningful restrictions here, or later */ );
var result = s.FromSelect();
ToInsert(CurrencyHeadingLinkRecordData)
Declaration
public static Insert ToInsert(this CurrencyHeadingLinkRecordData record)
Parameters
Returns
ToInserts(IEnumerable<CurrencyHeadingLinkRecordData>)
Declaration
public static IEnumerable<Insert> ToInserts(this IEnumerable<CurrencyHeadingLinkRecordData> records)
Parameters
Returns
ToRecordData(CurrencyHeadingLinkRow)
Declaration
public static CurrencyHeadingLinkRecordData ToRecordData(this CurrencyHeadingLinkRow row)
Parameters
Returns