0

Is there any way to ignore a property in a RavenDB entity class for RavenDB 3.5? I'm working on upgrading a project to .NET core and this project relies on RavenDB. Before when saving an object to RavenDB I could just add the attribute JsonIgnore from the Raven.Imports.Newtonsoft.Json namespace in the Raven.Abstraction library to the property I wanted to be ignored but this library doesn't seem to exist for 3.5. Any ideas on how to solve this?

Mariusz Jamro
  • 30,615
  • 24
  • 120
  • 162

1 Answers1

2

In the same way, the client is embedding the attribute, and it is available.

Ayende Rahien
  • 22,925
  • 1
  • 36
  • 41