Faker.Net icon indicating copy to clipboard operation
Faker.Net copied to clipboard

German city names

Open TechyChap opened this issue 5 months ago • 0 comments

Was generating names like

5{Name.GetFirstName}dorf

Fix is to change the # to @ in the CityNameFormat

public override string[] CityNameFormat { get { return new[] { "#{CityPrefix} @{Name.GetFirstName}#{CitySuffix}", "#{CityPrefix} @{Name.GetFirstName}", "@{Name.GetFirstName}#{CitySuffix}", "@{Name.GetLastName}#{CitySuffix}" }; } }

TechyChap avatar Aug 29 '25 10:08 TechyChap