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