IEntityServiceT Interface

This interface is designed to support the application infrastructure and is not intended to be used by your code.

Namespace: Dundas.BI.Entities
Assembly: 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

Type Parameters

T
The type of entity being managed by the service.

The IEntityServiceT type exposes the following members.

Methods
 NameDescription
Public methodGet(Guid)Gets an entity by its ID.
Public methodGet(Guid, EntityGetOptions)Gets an entity by its ID and revision number.
Public methodGet(Guid, Int64)Gets an entity by its ID and revision number.
Public methodGet(String, Guid)Gets an entity by its name.
Public methodGet(Guid, Int64, EntityGetOptions)Gets an entity by its ID and revision number.
Public methodGet(String, Guid, EntityGetOptions)Gets an entity by its name.
Public methodGet(String, Guid, Int64)Gets an entity by its name and revision number.
Public methodGet(String, Guid, Int64, EntityGetOptions)Gets an entity by its name and revision number.
Public methodGetUndoContextGets the undo context.
Public methodRestoreUndoFrameRestores the entity to the undo frame.
Public methodRewireRewires the specified entity.
Public methodSave(T)Saves the specified entity.
Public methodSave(T, String, Guid, EntityCreationOptions)Saves the specified entity.
Public methodSave(T, String, Guid, Boolean)Saves the specified entity.
Public methodTryRedoTries to redo the last change done to the entity.
Public methodTryUndoTries to undo the last change done to the entity.
Top
See Also