Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a document model to store in RavenDB but I don't want to store a calculated property. How do I tell RavenDB to ignore this property?

In the below example I don't want to store Duration.

public class Build
{
    public string Id { get; set; }
    public string Name { get; set; }
    public DateTime StartedAt { get; set; }
    public DateTime FinishedAt { get; set; }

    public TimeSpan Duration { get { return StartedAt.Subtract(FinishedAt); }}
}
share|improve this question

1 Answer

up vote 9 down vote accepted

Just decorate the Duration property with [JsonIgnore] like this:

public class Build
{
    public string Id { get; set; }
    public string Name { get; set; }
    public DateTime StartedAt { get; set; }
    public DateTime FinishedAt { get; set; }

    [JsonIgnore]
    public TimeSpan Duration { get { return StartedAt.Subtract(FinishedAt); }}
}

See more here: http://ravendb.net/docs/client-api/advanced/custom-serialization

share|improve this answer
Side note: If this class is in -another- project (eg. AwesomeNamespace.Core), then this other project needs to either nuget package Newtonsoft.Json or RavenDb.Client. Basically, this attribute is from the Newtonsoft.Json library. This could change in the future, but at the time of me writing this comment .. that's the score. – Pure.Krome May 4 '12 at 3:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.