Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
325 views
in Technique[技术] by (71.8m points)

c# - cannot deserialize with the "Id" attribute

I'm trying to deserialize a collection to class. It seems that in case one of the fields named Id, I will get the error:

base {"An error occurred while deserializing the Address property of class Person.LicenseEntity: Element 'Id' does not match any field or property of class Person.Address"} System.FormatException {System.IO.FileFormatException}

However, changing the field name (e.g. to Idd) in both the class and the collection resolve the problem.

Is it possible that I'm not allowed to use the Id field?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I'm pretty sure this is because the Mongo C# driver deserializes the generated _id field from the document to the property named Id in your class. This means that your Id field has nowhere to go, and explains why changing the name of the Id to Idd allowed it to work.

As you are using a class called Address, I would perhaps name your field AddressId

Have a read of the Mongo C# Driver Docs I'm sure they will be a great help.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...