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