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