Skip to content

Commit 62e4334

Browse files
authored
Update README.md
1 parent 245f854 commit 62e4334

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ https://www.nuget.org/packages/Enum.Ext.EFCore/
2323

2424

2525
PM> Install-Package Enum.Ext.EFCore
26+
27+
List of all packages that we currently offer:
28+
29+
PM> Install-Package Enum.Ext
30+
PM> Install-Package Enum.Ext.EFCore
31+
PM> Install-Package Enum.Ext.AutoFixture
2632

2733
### How to use
2834

@@ -95,6 +101,15 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
95101
}
96102
```
97103

104+
#### Usage with AutoFixture
105+
106+
```C#
107+
var fixture = new Fixture();
108+
fixture.WithEnumExt();
109+
110+
var weekday = fixture.Create<Weekday>();
111+
```
112+
98113
### Enum.Ext in action
99114

100115
Here you find some examples how you could use the extension.

0 commit comments

Comments
 (0)