Every mongodb document must contain an identifier described as _id (the error does tell you that
An error occurred while serializing the Identifiers property of class Resource
);
you can solve the problem by changing the property id to ObjectId _id
or by adding [BsonNoId]
before each class you are defining.