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