IEntityServiceT Interface |
This interface is designed to support the application infrastructure and is not intended to be used by your code.
Namespace: Dundas.BI.EntitiesAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntax[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public interface IEntityService<T>
where T : EntityBase
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public Interface IEntityService(Of T As EntityBase)
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
generic<typename T>
where T : EntityBase
public interface class IEntityService
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
type IEntityService<'T when 'T : EntityBase> = interface end
Type Parameters
- T
- The type of entity being managed by the service.
The IEntityServiceT type exposes the following members.
Methods| | Name | Description |
|---|
 | Get(Guid) | Gets an entity by its ID. |
 | Get(Guid, EntityGetOptions) | Gets an entity by its ID and revision number. |
 | Get(Guid, Int64) | Gets an entity by its ID and revision number. |
 | Get(String, Guid) | Gets an entity by its name. |
 | Get(Guid, Int64, EntityGetOptions) | Gets an entity by its ID and revision number. |
 | Get(String, Guid, EntityGetOptions) | Gets an entity by its name. |
 | Get(String, Guid, Int64) | Gets an entity by its name and revision number. |
 | Get(String, Guid, Int64, EntityGetOptions) | Gets an entity by its name and revision number. |
 | GetUndoContext | Gets the undo context. |
 | RestoreUndoFrame | Restores the entity to the undo frame. |
 | Rewire | Rewires the specified entity. |
 | Save(T) | Saves the specified entity. |
 | Save(T, String, Guid, EntityCreationOptions) | Saves the specified entity. |
 | Save(T, String, Guid, Boolean) | Saves the specified entity. |
 | TryRedo | Tries to redo the last change done to the entity. |
 | TryUndo | Tries to undo the last change done to the entity. |
Top
See Also