Interface for GenericRepository class.
Namespace: kCura.Relativity.Client.Repositories
Assembly: kCura.Relativity.Client (in kCura.Relativity.Client.dll) Version: 640db774aa42dfbe1785add27fbb41844ec5c7d4
Syntax
Type Parameters
- T
- The type of Artifact on which operations will be performed.
The IGenericRepository<T> type exposes the following members.
Methods
Name | Description | |
---|---|---|
![]() | Create(List<T>) |
Creates the specified Artifacts.
|
![]() | Create(T[]) |
Creates the specified Artifacts.
|
![]() | CreateSingle |
Creates a single Artifact of the supplied DTO type.
|
![]() | Delete(List<Int32>) |
Deletes the specified Artifacts.
|
![]() | Delete(List<T>) |
Deletes the specified Artifacts.
|
![]() | Delete(Int32[]) |
Deletes the specified Artifacts.
|
![]() | Delete(T[]) |
Deletes the specified Artifacts.
|
![]() | DeleteSingle(Guid) |
Deletes the specified Artifact.
|
![]() | DeleteSingle(Int32) |
Deletes the specified Artifact.
|
![]() | MassCreate |
Creates RDO instances for each ArtifactRequest in artifacts based on the Field values provided by a 'template' ArtifactRequest.
|
![]() | MassEdit |
Applies the Field values from the 'template' Artifact to each of the Artifacts identified by the array of ArtifactIDs.
|
![]() | Query |
Queries Relativity to find Artifacts matching the selection criteria.
|
![]() | QuerySubset |
Fetches search results that were not returned in the first call to Query.
|
![]() | Read(List<Int32>) |
Reads all fields from each of the specified Artifacts.
|
![]() | Read(List<T>) |
Reads certain fields from the specified Artifacts.
|
![]() | Read(Int32[]) |
Reads all fields from each of the specified Artifacts.
|
![]() | Read(T[]) |
Reads the specified Artifacts.
|
![]() | ReadSingle(Guid) |
Returns the Artifact matching the specified artifact GUID.
|
![]() | ReadSingle(Int32) |
Returns the Artifact matching the specified artifact ID.
|
![]() | Update(List<T>) |
Updates the specified Artifacts.
|
![]() | Update(T[]) |
Updates the specified Artifacts.
|
![]() | UpdateSingle |
Updates the specified Artifact.
|
See Also