-
First of all, great lib and great work!
The issue I'm having is as described. I cannot opt to ignore a property if that property is protected. In fact, I cannot do anything to a hidden property.
T…
-
The final version of .NET Core 3.0 has been released. It would be awesome if your library would support this new version.
https://devblogs.microsoft.com/dotnet/announcing-net-core-3-0/
-
There's probably something pretty basic I'm missing here, apologies in advance :)
Let's say I want to generate a list of 10 strings formatted as email addresses. Is there an optimum way of doing th…
-
I have a [project](berwyn/heroku-dotnet) that I'm building and I'm using Bogus + AutoBogus in my test suites. I personally develop on macOS and Windows and haven't experienced the issue on either, but…
-
I needed to generate a largish Excel file for testing. I created 100K objects using [AutoBogus](https://github.com/nickdodd79/AutoBogus) and saved them to a file. With ExcelMapper, the Save operation …
-
### Version Information
| Software | Version(s) |
| ------------------------| ---------- |
| Bogus NuGet Package |28.0.2|
| .NET Core? | 3.0 Preview 8 |
|…
-
Hi.
Thank you for AutoBogus.
When I try to use AutoBogus v2.1.2 with Bogus v23.0.3, and my object contains a `DateTime` property, I get the following runtime exception:
```
System.MissingMet…
-
Thanks for this awesome library. I've noticed that `RuleForType` does not appear to work on child objects.
We're using the `Google.Api.CommonProtos` library in our app, and the `Money` type in thi…
-
```
enum MyEnum // does not matter public or not
{
A,
B
};
class MyClass // does not matter public or not
{
public MyEnum e;
}
[Fact]
public void TestRequestConversion()
{
…
-
Is there any Intellisence / Roslyn extensions or other solutions?
Something like the below.
Generate `RuleFor` code rows for all public properties.
`Property` expression parameter is generated as…