Understand AutoBogus configuration hierarchy
masterConfiguration in AutoBogus is hierarchical. Settings cascade from most general to most specific. If a setting is not defined at a lower level, the library falls back to the level above:
- Global: Scoped as the default configuration across all generate requests (
AutoFaker.Configure). - Faker: Scoped to all requests made by a specific
AutoFakerinstance (AutoFaker.Create). - Generate: Scoped to a single specific generate request (
faker.Generate<T>()).