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