Anonymous types in C# are immutable and hence do not have property setter methods. You’ll need to create a new anonmyous type with the values
obj = new { Name = "asdasd", Price = 11.00 };
Anonymous types in C# are immutable and hence do not have property setter methods. You’ll need to create a new anonmyous type with the values
obj = new { Name = "asdasd", Price = 11.00 };