The abstract base class inherited by all entities.

Namespace:  Mindscape.LightSpeed
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
[SerializableAttribute]
[DataServiceKeyAttribute("Id")]
[IgnorePropertiesAttribute()]
[DataContractAttribute(IsReference = true)]
public abstract class Entity<TId> : Entity
Visual Basic (Declaration)
<SerializableAttribute> _
<DataServiceKeyAttribute("Id")> _
<IgnorePropertiesAttribute()> _
<DataContractAttribute(IsReference := True)> _
Public MustInherit Class Entity(Of TId) _
	Inherits Entity

Type Parameters

TId
The type of the entity's id field.

Inheritance Hierarchy

System..::.Object
  Mindscape.LightSpeed..::.Entity
    Mindscape.LightSpeed..::.Entity<(Of <(TId>)>)

See Also