We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm consuming an OData API where the provider has the following entity as an example, with the namespace changed slightly to hide the providers name.
<EntitySet Name="subject-sets" EntityType="Service.Domain.Models.Projections.SubjectSet"> <NavigationPropertyBinding Path="Tutor1" Target="staff" /> <NavigationPropertyBinding Path="Tutor2" Target="staff" /> <NavigationPropertyBinding Path="Tutor3" Target="staff" /> <NavigationPropertyBinding Path="Pupil" Target="pupils" /> </EntitySet>
This is scaffolded by the OData Connected Service Extension to the following
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.OData.Client.Design.T4", "2.4.0")] [global::Microsoft.OData.Client.OriginalNameAttribute("subject-sets")] public global::Microsoft.OData.Client.DataServiceQuery<global::Service.Domain.Models.Projections.SubjectSet> Subject-sets { get { if ((this._Subject-sets == null)) { this._Subject-sets = base.CreateQuery<global::Service.Domain.Models.Projections.SubjectSet>("subject-sets"); } return this._Subject-sets; } }
which causes issues.
This should instead be converted to either camel_cased or PascalCased
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm consuming an OData API where the provider has the following entity as an example, with the namespace changed slightly to hide the providers name.
This is scaffolded by the OData Connected Service Extension to the following
which causes issues.
This should instead be converted to either camel_cased or PascalCased
The text was updated successfully, but these errors were encountered: