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
Since performance problems were found at POCO mapper library, there is needs to take countermeasures.
Using try-catch to check the presence or absence of a DataReader field. https://github.com/OpenTouryoProject/OpenTouryo/blob/develop/root/programs/CS/Frameworks/Infrastructure/Public/Dto/DataToPoco.cs#L237
https://github.com/OpenTouryoProject/OpenTouryo/blob/develop/root/programs/CS/Frameworks/Infrastructure/Public/Dto/DataToPoco.cs#L251
The text was updated successfully, but these errors were encountered:
f30aad7
No branches or pull requests
Requirement
Since performance problems were found at POCO mapper library,
there is needs to take countermeasures.
Un-recommended usage of try-catch.
Using try-catch to check the presence or absence of a DataReader field.
https://github.com/OpenTouryoProject/OpenTouryo/blob/develop/root/programs/CS/Frameworks/Infrastructure/Public/Dto/DataToPoco.cs#L237
Performance degradation due to Debug.WriteLine().
https://github.com/OpenTouryoProject/OpenTouryo/blob/develop/root/programs/CS/Frameworks/Infrastructure/Public/Dto/DataToPoco.cs#L251
Performance of Reflection.
https://techinfoofmicrosofttech.osscons.jp/index.php?.NET%20%E3%81%AE%20Reflection
The text was updated successfully, but these errors were encountered: