Class ContIntGroupLinkRecordDataExtensions
Extension methods to make it easy to fetch ContIntGroupLinkRecordData objects from the database,
using the TargetedSelect infrastructure
Inheritance
ContIntGroupLinkRecordDataExtensions
Assembly: SoDataBase.dll
Syntax
public static class ContIntGroupLinkRecordDataExtensions
Methods
FromRecord(TargetedDataRecord<ContIntGroupLinkTableInfo>)
Declaration
public static ContIntGroupLinkRecordData FromRecord(this TargetedDataRecord<ContIntGroupLinkTableInfo> 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 { ContIntGroupLinkItem = r.FromRecord(), /* fetch other fields here */ });
FromSelect(TargetedSelect<ContIntGroupLinkTableInfo>)
From a TargetedSelect<ContIntGroupLinkTableInfo>, execute it and return an IEnumerable<ContIntGroupLinkRecordData> with the results
Declaration
public static IEnumerable<ContIntGroupLinkRecordData> FromSelect(this TargetedSelect<ContIntGroupLinkTableInfo> select)
Parameters
Returns
Examples
var s = S.NewSelect<DataRightTableInfo>( /* add meaningful restrictions here, or later */ );
var result = s.FromSelect();
ToInsert(ContIntGroupLinkRecordData)
Extension methods to make it easy to fetch ContIntGroupLinkRecordData objects from the database,
using the TargetedSelect infrastructure
Declaration
public static Insert ToInsert(this ContIntGroupLinkRecordData record)
Parameters
Returns
ToInserts(IEnumerable<ContIntGroupLinkRecordData>)
Extension methods to make it easy to fetch ContIntGroupLinkRecordData objects from the database,
using the TargetedSelect infrastructure
Declaration
public static IEnumerable<Insert> ToInserts(this IEnumerable<ContIntGroupLinkRecordData> records)
Parameters
Returns
ToRecordData(ContIntGroupLinkRow)
Extension methods to make it easy to fetch ContIntGroupLinkRecordData objects from the database,
using the TargetedSelect infrastructure
Declaration
public static ContIntGroupLinkRecordData ToRecordData(this ContIntGroupLinkRow row)
Parameters
Returns