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

    XMLWordPrintableJSON

Details

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: Major - P3 Major - P3
    • None
    • None
    • Serialization
    • None

    Description

       

      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

       

      Attachments

        Activity

          People

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

            Dates

              Created:
              Updated:
              Resolved: