Table of Contents

Interface IEntity

Namespace
Neo4j.Driver
Assembly
Neo4j.Driver.dll

Represents an Entity in the Neo4j graph database. An Entity could be a Node or a Relationship.

public interface IEntity
Extension Methods

Properties

ElementId

Get the identity as a string.

Id

Get the identity as a long number.

this[string]

Gets the value that has the specified key in Properties.

Properties

Gets the properties of the entity.

Methods

Get<T>(string)

Gets the value that has the specified key in Properties and casts it to the specified type.

TryGet<T>(string, out T)

Tries to get the value that has the specified key in Properties and casts it to the specified type.