Click or drag to resize

IBufferTableExtensions Class

Contains extension methods for the IBufferTable interface.
Inheritance Hierarchy
SystemObject
  Aloe.SystemFrameworks.Domain.DataAccessIBufferTableExtensions

Namespace:  Aloe.SystemFrameworks.Domain.DataAccess
Assembly:  Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntax
public static class IBufferTableExtensions

The IBufferTableExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberEnsureLoaded
Checks all ids in the list and makes sure all of them are loaded in the memory of the table.
Public methodStatic memberFindOrLoadRow
Searches for the row in the table. If not found it is loaded from the data store.
Public methodStatic memberFindOrLoadRowByValueTValue(IBufferTable, IBufferColumn, TValue)
Finds or loads from the data-source the first row, for which the specified column matches the specified value.
Public methodStatic memberFindOrLoadRowByValueTValue(IBufferTable, String, TValue)
Finds or loads from the data-source the first row, for which the specified column matches the specified value.
Public methodStatic memberFindOrLoadRows
Find or loads from the data source the rows with the specified ids.
Public methodStatic memberFindOrLoadRowsByValueTValue
Finds or loads from the data-source all rows, for which the specified column matches the specified values.
Public methodStatic memberFindRowByValueTValue(IBufferTable, IBufferColumn, TValue)
Finds and returns the first row, for which the specified column matches the specified value.
Public methodStatic memberFindRowByValueTValue(IBufferTable, Int32, TValue)
Finds and returns the first row, for which the specified column matches the specified value.
Public methodStatic memberFindRowByValueTValue(IBufferTable, String, TValue)
Finds and returns the first row, for which the specified column matches the specified value.
Public methodStatic memberMerge
Merges the table with the rows of the specified other table.
Public methodStatic memberNewRow
Creates a new row and returns it.
Public methodStatic memberProtectCurrentData
Protects all rows in the table. The protected rows are not refreshed with new values from the data source.
Top
See Also