Sembra che l'attributo [BsonIgnore] abbia fatto il lavoro.
public class GroceryList : MongoEntity<ObjectId>
{
public FacebookList Owner { get; set; }
[BsonIgnore]
public bool IsOwner { get; set; }
}
Sembra che l'attributo [BsonIgnore] abbia fatto il lavoro.
public class GroceryList : MongoEntity<ObjectId>
{
public FacebookList Owner { get; set; }
[BsonIgnore]
public bool IsOwner { get; set; }
}