Develop#32
Merged
Merged
Conversation
Replaced "Random Entity Generation" with "Random Entity Creation" across the codebase. Updated interfaces, classes, methods, and properties to reflect the new terminology. Introduced `ICreateRandomEntities` and `AutoFixtureRandomEntityCreator` to replace `IGenerateRandomEntities` and `AutoFixtureRandomEntityGenerator`. Updated all tests to align with the new implementation, including adding new test classes and removing outdated ones. Migrated customizations like `NoCircularReferencesCustomization` and `IgnoreVirtualMembersCustomization` to the new implementation. This refactor introduces breaking changes for consumers of the old interfaces and classes. Updated documentation and comments to reflect the changes. Added new files for the updated implementation and removed obsolete files.
Updated the version in `Wolfgang.DbContextBuilder-Core.csproj` from `0.1.0-prerelease2` to `0.2.0`, marking the transition from a pre-release to a stable version. This reflects significant updates or improvements in the library. Aligned the version in `Wolfgang.DbContextBuilder-Core.Tests.Unit.csproj` from `0.1.0` to `0.2.0` to ensure consistency with the main library version and reflect updates in the test suite.
Chris-Wolfgang
added a commit
that referenced
this pull request
May 10, 2026
Backport of [repo-template#339](Chris-Wolfgang/repo-template#339). The 'Fetch trusted configuration files from main branch' step writes the protected configs back via `Out-File -Encoding UTF8` (BOM-prefixed). The .NET analyzer engine appears to ignore BOM-prefixed `.editorconfig` files, so project severity overrides don't apply on CI — analyzers fire at default severity and `TreatWarningsAsErrors` escalates findings that pass locally. This is a 4-line workflow-only change: `UTF8` → `UTF8NoBOM` at the four call sites. PowerShell 6+ supports the encoding token; `shell: pwsh` runners use PS 7+, so it's safe. Diagnosed against [In-memory-Logger PR #32 / run 24996715587](https://github.com/Chris-Wolfgang/In-memory-Logger/actions/runs/24996715587/job/73195928572). 🤖 Generated with [Claude Code](https://claude.com/claude-code)
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.
Description
Renamed IGenerateRandomEntities to ICreateRandomEntities and updated methods and documentation accordingly