It’s okay, I figured it out using “TypeProvider.AddProvider” using a TypeDescriptorProvider I wrote to pretend the fields are properties for the component model.
TypeDescriptorProvider can only be applied to classes I control, is there any equivalent way to provide a custom type descriptor for a specific property
So I’m wondering if there is some advanced way I can enable binding directly to the field rather than a property, perhaps something to do with ICustomTypeDescriptor?
I’m only interested in reading the values, but it would be nice not to add 3 additional properties for each of the 7 vectors on my data object to read them all
This has to be some sort of weird caching issue because I just removed my SG entirely for this class and just added the extra partial definitions in non generated code and still see the same issue.
I realize it wasn’t clear, this is a source generator that I have written myself. The generated code looks fine, it is just implementing INotifyPropertyChanged using partial properties rather than a field like most public SGs do right now.