Class SalutationHeadingLinkRecordDataExtensions
Inheritance
SalutationHeadingLinkRecordDataExtensions
Assembly: SoDataBase.dll
Syntax
public static class SalutationHeadingLinkRecordDataExtensions
Methods
FromRecord(TargetedDataRecord<SalutationHeadingLinkTableInfo>)
Declaration
public static SalutationHeadingLinkRecordData FromRecord(this TargetedDataRecord<SalutationHeadingLinkTableInfo> 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 { SalutationHeadingLinkItem = r.FromRecord(), /* fetch other fields here */ });
FromSelect(TargetedSelect<SalutationHeadingLinkTableInfo>)
From a TargetedSelect<SalutationHeadingLinkTableInfo>, execute it and return an IEnumerable<SalutationHeadingLinkRecordData> with the results
Declaration
public static IEnumerable<SalutationHeadingLinkRecordData> FromSelect(this TargetedSelect<SalutationHeadingLinkTableInfo> select)
Parameters
Returns
Examples
var s = S.NewSelect<DataRightTableInfo>( /* add meaningful restrictions here, or later */ );
var result = s.FromSelect();
ToInsert(SalutationHeadingLinkRecordData)
Declaration
public static Insert ToInsert(this SalutationHeadingLinkRecordData record)
Parameters
Returns
ToInserts(IEnumerable<SalutationHeadingLinkRecordData>)
Declaration
public static IEnumerable<Insert> ToInserts(this IEnumerable<SalutationHeadingLinkRecordData> records)
Parameters
Returns
ToRecordData(SalutationHeadingLinkRow)
Declaration
public static SalutationHeadingLinkRecordData ToRecordData(this SalutationHeadingLinkRow row)
Parameters
Returns