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