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