Brian Chavez
Brian Chavez
Thanks for the update and investigation on this; will be pulling some locale data so hopefully issues like this will get resolved once we get to v6 API parity and...
@addixon-cnhi I haven't dived into this particular issue yet, but I suspect one workaround might be to create your own `Binder`: * https://github.com/bchavez/Bogus/blob/0f4efc216b9a024d8a6c10c3d106980ff61ce927/Source/Bogus/Binder.cs The `Binder` is responsible for reflecting over...
> I like the setting as with the seed. This makes logically a lot of sense and is cleaner then having a property to set. @garcipat I think I agree....
API surface so far: ```csharp //configuring per Faker[T] instance var fakerT = new Faker() .UseSeed(1337) .UseDateTimeReference(new DateTime(2022, 1, 23)) //configuring per Faker instance var faker = new Faker() { Random...
@garcipat ; what particular tests do you want me to pull over from #492 ?
@garcipat hmm. closing the PR should not have any impact on what was committed; or what previously & currently exists on your fork: * https://github.com/garcipat/Bogus/tree/reference-date The only way something could...
@304NotModified i think the first thing is to get this rebased to master. then finally, one final review push/reading through the context on this ticket to make sure I'm not...
@304NotModified and @garcipat, i think this PR is just about ready. I'm planning on merging it next weekend. @garcipat, I pulled in your tests from PR #508 and gave you...
Changes are released in **Bogus** `v35.5.0`: * https://www.nuget.org/packages/Bogus/35.5.0 Let me know if there are any issues. 👍
Hi. I think we need a unit test for this. Also, is there a way to generate an NHS number without the `do/while` loop? Generally, it's a bad/anti-pattern for generators...