Interface IRepository
Assembly: TcOpen.Inxton.Abstractions.dll
Syntax
public interface IRepository
Properties
|
Improve this Doc
View Source
Count
Declaration
Property Value
Type |
Description |
System.Int64 |
|
Methods
|
Improve this Doc
View Source
Create(String, Object)
Declaration
void Create(string identifier, object data)
Parameters
Type |
Name |
Description |
System.String |
identifier |
|
System.Object |
data |
|
|
Improve this Doc
View Source
Delete(String)
Declaration
void Delete(string identifier)
Parameters
Type |
Name |
Description |
System.String |
identifier |
|
|
Improve this Doc
View Source
Exists(String)
Declaration
bool Exists(string identifier)
Parameters
Type |
Name |
Description |
System.String |
identifier |
|
Returns
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
FilteredCount(String, eSearchMode)
Declaration
long FilteredCount(string id, eSearchMode searchMode = eSearchMode.Exact)
Parameters
Type |
Name |
Description |
System.String |
id |
|
eSearchMode |
searchMode |
|
Returns
Type |
Description |
System.Int64 |
|
|
Improve this Doc
View Source
Read(String)
Declaration
dynamic Read(string identifier)
Parameters
Type |
Name |
Description |
System.String |
identifier |
|
Returns
Type |
Description |
System.Object |
|
|
Improve this Doc
View Source
Update(String, Object)
Declaration
void Update(string identifier, object data)
Parameters
Type |
Name |
Description |
System.String |
identifier |
|
System.Object |
data |
|