Details
-
Task
-
Resolution: Done
-
Minor - P4
-
None
-
1.10, 2.0
Description
Serializing the following classes fails because NamedIdMemberConvention doesn't realize that C already has an _id, and tries to map the Id in D to "_id" also, resulting in duplicate element names.
public class C
|
{
|
public int _id { get; set; }
|
}
|
|
|
public class D : C
|
{
|
public int Id { get; set; }
|
}
|