Uploaded image for project: 'C# Driver'
  1. C# Driver
  2. CSHARP-3526

Constructor argument with same name as property but different types fails to serialize

    • Type: Icon: Bug Bug
    • Resolution: Won't Fix
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: Serialization
    • None
    • None
    • None
    • None
    • None
    • None
    • None

       

      public class A
       {
        public int[] Data { get; }
        public A(IEnumerable<int> data)
        {
          Data = data.ToArray();
        }
       }
      
      
      public class B
      {
        public int[] Data { get; }
        public B(IEnumerable<int> data2)
        {
          Data = data2.ToArray();
        }
      }
      

      A.ToBson() fails while B.ToBson() works.
      Consider same type and name matching in both ImmutableTypeClassMapConvention and NamedParameterCreatorMapConvention

       

            Assignee:
            james.kovacs@mongodb.com James Kovacs
            Reporter:
            boris.dogadov@mongodb.com Boris Dogadov
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: