Interface IValueProvider
Provides an interface for objects that provide values from different source, offering one unique interface for doing so.
Namespace: Paradigm.ORM.Data.ValueProviders
Assembly: Paradigm.ORM.Data.dll
Syntax
public interface IValueProvider
Methods
| Improve this Doc View SourceGetValue(IColumnDescriptor)
Gets the value related to the descriptor.
Declaration
object GetValue(IColumnDescriptor descriptor)
Parameters
Type | Name | Description |
---|---|---|
IColumnDescriptor | descriptor | The descriptor. |
Returns
Type | Description |
---|---|
System.Object | Column descriptor value. |
MoveNext()
Moves the reading cursor to the next entity or row.
Declaration
bool MoveNext()
Returns
Type | Description |
---|---|
System.Boolean |
MoveNextAsync()
Moves the reading cursor to the next entity or row.
Declaration
Task<bool> MoveNextAsync()
Returns
Type | Description |
---|---|
Task<System.Boolean> |