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