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