IEntity Interface

MongoRepository

IEntity Interface
"Default" Entity interface.

Namespace: MongoRepository
Assembly: MongoRepository.Net45 (in MongoRepository.Net45.dll) Version: 1.6.11.0 (1.6.11.0)
Syntax
public interface IEntity : IEntity<string>
Public Interface IEntity
	Inherits IEntity(Of String)
public interface class IEntity : IEntity<String^>
type IEntity =  
    interface
        interface IEntity<string>
    end

The IEntity type exposes the following members.

Properties
  NameDescription
Public propertyId
Gets or sets the Id of the Entity.
(Inherited from IEntityTKey.)
Top
Remarks
Entities are assumed to use strings for Id's.
See Also