Getters in manually implemented get-set properties are not translated #77
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
My use case is that I want to effectively add an alias for a member. So here for example I add an
Id
property which just points toDocumentId
. I need the getter ofId
to be projectable for it to get translated correctly in queries, but I also happen to need a setter (it's implementing an interface). I cannot separate out the two, because if an interface defines a property asget; set;
you have to implement both in one go.For reference, the id comes from an interface like this:
I do need both get and set in the interface and I can't separate them out.
The text was updated successfully, but these errors were encountered: