You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,7 @@ Entity Framework Core Generator supports the following databases.
128
128
- PostgreSQL
129
129
- MySQL
130
130
- Sqlite
131
+
- Oracle
131
132
132
133
The provider can be set via command line or via the [configuration file](https://efg.loresoft.com/configuration/).
133
134
@@ -147,14 +148,25 @@ database:
147
148
148
149
## Database Schema
149
150
150
-
The database schema is loaded from the metadata model factory implementation of `IDatabaseModelFactory`. Entity Framework Core Generator uses the implemented interface from each of the supported providers similar to how `ef dbcontext scaffold` works.
151
+
The database schema is loaded from [SchemaSaurus](https://github.com/loresoft/SchemaSaurus) for each supported provider.
151
152
152
153
## View Models
153
154
154
155
Entity Framework Core Generator supports generating [Read](https://efg.loresoft.com/md/read/), [Create](https://efg.loresoft.com/md/create/) and [Update](https://efg.loresoft.com/md/update/) view models from an entity. Many projects rely on view models to shape data. The model templates can be used to quickly get the basic view models created. The model templates also support regeneration so any database change can easily be sync'd to the view models.
155
156
156
157
## Change Log
157
158
159
+
### Version 8.0
160
+
161
+
- add support for .NET 10 while continuing to target .NET 8
Copy file name to clipboardExpand all lines: docs/md/shared.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Shared Model Template
1
+
# Shared Model Template
2
2
3
3
The [Read](read.md), [Create](create.md) and [Update](update.md) model templates share the following [configuration](../configuration.md).
4
4
@@ -39,4 +39,3 @@ Exclude all entities that match any of the listed regular expressions.
39
39
#### properties
40
40
41
41
Exclude all properties that match any of the listed regular expressions. The value to match contains the parent entity the property belongs too, `Entity.Property`.
0 commit comments