Het lijkt erop dat het [BsonIgnore]-attribuut het werk heeft gedaan.
public class GroceryList : MongoEntity<ObjectId>
{
public FacebookList Owner { get; set; }
[BsonIgnore]
public bool IsOwner { get; set; }
}
Het lijkt erop dat het [BsonIgnore]-attribuut het werk heeft gedaan.
public class GroceryList : MongoEntity<ObjectId>
{
public FacebookList Owner { get; set; }
[BsonIgnore]
public bool IsOwner { get; set; }
}