-
The current default behaviour is that lists within an object are always null if the property is e.g IReadonlyCollection, is there a way that AutoFaker always creates an empty list instead of null?
…
rizi updated
7 months ago
-
If I have an object `Person`
```csharp
public class Person
{
public Person(string firstName, string lastName, int age)
{
FirstName = firstName;
LastName = lastName;
…
-
How do I generate objects leaving out their navigation properties or properties that point to other objects? I tried configuring with builder.RecursiveDepth(0) but that did not work. Is it anything al…
-
I'm trying to updated to ORT 1.1.0, and I'm fighting with the package curations I created for earlier versions.
Is there a format specifier I can use to programmatically migrate old IDs to the new …
-
I would like to generate from a `Type` parameter,
e.g.
```c#
Type type = ...
object generateObject = new AutoFaker(type).Generate();
```
Current work around:
```c#
Type type = ...
Ty…
-
### Version Information
| Software | Version(s) |
| ------------------------| ---------- |
| Bogus NuGet Package | 34.0.2 |
| .NET Core? | …
-
I started using this in my project, and initial testing went well. Then, I realised that only few values were stored in the cache.
I then created the following test (NUnit) to verify whether the `…
-
I want to request a feature which allows you to declare members to skip of an interface. When a class inherits from that interface, the specified members to skip will also affect the class.
Code:
…
-
I'm trying to upgrade my solution to DotNet Core 3. I have references to Entity Framework, which has forced an upgrade to netstandard 2.1.
However, my classes that were using the DataTableExtensio…
-
I'm trying to integrate Buildenator + AutoBogus into a project, and I've hit an issue.
Currently when generating the properties I can only see the type of the property by overriding the `additional…