We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 245f854 commit 62e4334Copy full SHA for 62e4334
README.md
@@ -23,6 +23,12 @@ https://www.nuget.org/packages/Enum.Ext.EFCore/
23
24
25
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
32
33
### How to use
34
@@ -95,6 +101,15 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
95
101
}
96
102
```
97
103
104
+#### Usage with AutoFixture
105
106
+```C#
107
+var fixture = new Fixture();
108
+fixture.WithEnumExt();
109
110
+var weekday = fixture.Create<Weekday>();
111
+```
112
98
113
### Enum.Ext in action
99
114
100
115
Here you find some examples how you could use the extension.
0 commit comments