I am using the Office MongoDB C# Drive v0.9.1.26831, but I was wondering given a POCO class, is there anyway to ignore certain properties from getting inserted.

For example, I have the following class:

public class GroceryList
{
    public string Name { get; set; }
    public FacebookList Owner { get; set; }
    public bool IsOwner { get; set; }
}

Is there a way, for the IsOwner to not get inserted when I insert a GroceryList object? Basically, I fetch the object from the database then set the IsOwner property in the app layer and then return it back to the controller, which than maps the object to a view model.

Hope my question makes sense. thanks!

link|improve this question

Did you solved your problem? – Andrew Orsich Feb 7 '11 at 15:12
Yes, I used the BsonIgnore attribute on the IsOwner property and that solved the problem. thanks! – Abe Feb 7 '11 at 19:58
feedback

2 Answers

up vote 7 down vote accepted

It looks like the [BsonIgnore] attribute did the job.

public class GroceryList : MongoEntity<ObjectId>
{
    public FacebookList Owner { get; set; }
    [BsonIgnore]
    public bool IsOwner { get; set; }
}
link|improve this answer
feedback

Also you can make IsOwner Nullable and add [BsonIgnoreExtraElements] to hole class:

[BsonIgnoreExtraElements]
public class GroceryList : MongoEntity<ObjectId>
{
    public FacebookList Owner { get; set; }
    public bool? IsOwner { get; set; }
}

Property with null value will be ignored during searilization. But i think [BsonIgnore] will be better for your case.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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