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?
Asked
Active
Viewed 215 times
1 Answers
2
In the same way, the client is embedding the attribute, and it is available.

Ayende Rahien
- 22,925
- 1
- 36
- 41
-
1Wasn't recognized in my code since im using multiple frameworks which confused me. Got it working now though, thanks! – Andreas Ljungström Sep 28 '16 at 07:06