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