Update HowToUseMapster sample to .NET 10 and fix age calculation - #2103
Open
vladimir-pecanac-main wants to merge 1 commit into
Open
Update HowToUseMapster sample to .NET 10 and fix age calculation#2103vladimir-pecanac-main wants to merge 1 commit into
vladimir-pecanac-main wants to merge 1 commit into
Conversation
Retarget the project and tests to net10.0, bump Mapster to 10.0.11 (and the Mapster.Tool + Swashbuckle references to current stable), and refresh the test packages. Replace the naive DateTime.Now.Year - DateOfBirth.Year age rule with a leap-safe CalculateAge() helper on DateOnly, and cover it with two edge-case unit tests (birthday already passed; 29 February birthday in a non-leap year).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Retargets the HowToUseMapster sample and its tests to net10.0 and bumps Mapster to 10.0.11 (with Mapster.Tool and Swashbuckle to current stable, plus refreshed test packages).
Replaces the naive
DateTime.Now.Year - DateOfBirth.Yearage rule with a leap-safeCalculateAge()helper built onDateOnly, which is off by a year before a person's birthday in the original. Adds two edge-case unit tests: a birthday already passed this year, and a 29 February birthday evaluated in a non-leap year.Build and tests are green on net10.0 (6 tests passing). The Mapster code-generation tool runs cleanly under the .NET 10 SDK.