Faker.Net
Faker.Net copied to clipboard
German city names
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}" }; } }