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
Few day ago it stops works properly because all post request which use fill query from object became broken.
It's cased because you set override Api Version Property as private
and in place where you get all properties you don't include private fields
use var properties = type.GetProperties(BindingFlags.GetField | BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic);
var properties = type.GetProperties(BindingFlags.GetField | BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic);
instend of var properties = type.GetProperties();
var properties = type.GetProperties();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Few day ago it stops works properly because all post request which use fill query from object became broken.
It's cased because you set override Api Version Property as private
and in place where you get all properties you don't include private fields
use
var properties = type.GetProperties(BindingFlags.GetField | BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic);
instend of
var properties = type.GetProperties();
The text was updated successfully, but these errors were encountered: