Skip to content

Commit e1181fb

Browse files
author
Marc Sallin
committed
Update README.md
Added Install section which contains more detailed instructions for the installation and a list of supported .net framework versions.
1 parent 417aecf commit e1181fb

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,17 @@ The Builder knows how to translate the EdmModel into statements where a statemen
2323
The structure of the statements is influenced by the [SQLite Language Specification](https://www.sqlite.org/lang.html).
2424
You will find an extensive usage of the composite pattern.
2525

26-
## How to use
27-
Either get the assembly from the latest [release](https://github.com/msallin/SQLiteCodeFirst/releases) or install the NuGet-Package [SQLite.CodeFirst](https://www.nuget.org/packages/SQLite.CodeFirst/).
26+
## Install
27+
Either get the assembly from the latest [GitHub Release Page](https://github.com/msallin/SQLiteCodeFirst/releases) or install the NuGet-Package [SQLite.CodeFirst](https://www.nuget.org/packages/SQLite.CodeFirst/) (`PM> Install-Package SQLite.CodeFirst`).
28+
29+
The project is builded for the target frameworks 4.0 and 4.5.
30+
That means you can use the SQLite CodeFirst in projects with the following target frameworks.
31+
- .NET 4.0 (use net40)
32+
- .NET 4.5 (use net45)
33+
- .NET 4.5.1 (use net45)
34+
- .NET 4.5.2 (use net45)
2835

36+
## How to use
2937
If you want to let the Entity Framework create the database, if it does not exist, just set `SqliteDropCreateDatabaseAlways<>` or `SqliteCreateDatabaseIfNotExists<>` as your `IDbInitializer<>`.
3038
```csharp
3139
public class MyDbContext : DbContext

0 commit comments

Comments
 (0)