Skip to main content

Session: How to get entity metadata?

When document is downloaded from server it contains various metadata information e.g. Id or current etag. This information is stored in session and available for each entity using GetMetadataFor method from Advanced session operations.

Syntax

IMetadataDictionary GetMetadataFor<T>(T instance);
Parameters
instanceTInstance of an entity for which metadata will be returned.
Return Value
RavenJObjectReturns entity metadata. If the instance is transient it will load document from server and attach entity and its metadata to session.

Example

var employee = session.Load<Employee>("employees/1-A");
var metadata = session.Advanced.GetMetadataFor(employee);