How to have a different name for entries of a mongodb document in C#?
问题 I'm trying to do CRUD operations on documents in MongoDB and C# . I would like to have fixed structured domain entities in C# with long meaningful property names but since the name of each property will be saved in MongoDB for each document, that's not a good idea. That's because property names will be redundantly saved in database and affect the total storage and performance. The solution I can think of to overcome this problem, is to use different names for properties in C# than in MongoDB