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