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