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
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,9 +23,17 @@ The Builder knows how to translate the EdmModel into statements where a statemen
23
23
The structure of the statements is influenced by the [SQLite Language Specification](https://www.sqlite.org/lang.html).
24
24
You will find an extensive usage of the composite pattern.
25
25
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)
28
35
36
+
## How to use
29
37
If you want to let the Entity Framework create the database, if it does not exist, just set `SqliteDropCreateDatabaseAlways<>` or `SqliteCreateDatabaseIfNotExists<>` as your `IDbInitializer<>`.
0 commit comments