Skip to content

Commit 98e02f8

Browse files
committed
Fix typos in README
gab -> gap, explicit set -> explicitly set, a own -> your own, a additional -> an additional, you may getting -> you may get.
1 parent 9799e19 commit 98e02f8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you need a specific feature for a commercial project, I am glad to offer a pa
1313

1414
## Project Status
1515

16-
This project was started when there was .NET Full Framework and EF 6. EF 6 does not offer code first for SQLite and this library fills this gab.
16+
This project was started when there was .NET Full Framework and EF 6. EF 6 does not offer code first for SQLite and this library fills this gap.
1717
Nowadays there is .NET Core (or now just called .NET) and EF Core. EF Core supports code first and migrations for SQLite.
1818
If you use .NET Core 3 or above together with EF Core, there is no need for this library.
1919
If you use EF 6 (either with .NET Full Framework or with .NET Core 3 or above), this library is an option for you to get code first for SQLite.
@@ -30,10 +30,10 @@ The following features are supported:
3030
- PrimaryKey constraint (`Key` annotation, key composites are supported)
3131
- ForeignKey constraint (1-n relationships, support for 'Cascade on delete')
3232
- Not Null constraint
33-
- Auto increment (An int PrimaryKey will automatically be incremented and you can explicit set the "AUTOINCREMENT" constraint to a PrimaryKey using the Autoincrement-Attribute)
33+
- Auto increment (An int PrimaryKey will automatically be incremented and you can explicitly set the "AUTOINCREMENT" constraint to a PrimaryKey using the Autoincrement-Attribute)
3434
- Index (Decorate columns with the `Index` attribute. Indices are automatically created for foreign keys by default. To prevent this you can remove the convention `ForeignKeyIndexConvention`)
3535
- Unique constraint (Decorate columns with the `UniqueAttribute`, which is part of this library)
36-
- Collate constraint (Decorate columns with the `CollateAttribute`, which is part of this library. Use `CollationFunction.Custom` to specify a own collation function.)
36+
- Collate constraint (Decorate columns with the `CollateAttribute`, which is part of this library. Use `CollationFunction.Custom` to specify your own collation function.)
3737
- Default collation (pass an instance of Collation as constructor parameter for an initializer to specify a default collation).
3838
- SQL default value (Decorate columns with the `SqlDefaultValueAttribute`, which is part of this library)
3939

@@ -79,7 +79,7 @@ public class MyDbContext : DbContext
7979
}
8080
```
8181

82-
Notice that the `SqliteDropCreateDatabaseWhenModelChanges<>` initializer will create a additional table in your database.
82+
Notice that the `SqliteDropCreateDatabaseWhenModelChanges<>` initializer will create an additional table in your database.
8383
This table is used to store some information to detect model changes. If you want to use an own entity/table you have to implement the
8484
`IHistory` interface and pass the type of your entity as parameter to the constructor of the initializer.
8585

@@ -176,7 +176,7 @@ You will find an extensive usage of the composite pattern.
176176

177177
## Hints
178178

179-
If you try to reinstall the NuGet-Packages (e.g. if you want to downgrade to .NET 4.0), the app.config will be overwritten and you may getting an exception when you try to run the console project.
179+
If you try to reinstall the NuGet-Packages (e.g. if you want to downgrade to .NET 4.0), the app.config will be overwritten and you may get an exception when you try to run the console project.
180180
In this case please check the following issue: <https://github.com/msallin/SQLiteCodeFirst/issues/13.>
181181

182182
## Recognition

0 commit comments

Comments
 (0)