From 52cf6de2ff7cd4fbee0d7c4a1db23327bacdb661 Mon Sep 17 00:00:00 2001 From: Lamadelrae Date: Sat, 29 Apr 2023 19:11:40 -0300 Subject: [PATCH 1/3] docs: adding FAQ about minimum ef vertsions --- docs/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/index.md b/docs/index.md index 25649482..8a77e49e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -39,3 +39,8 @@ Read the [Getting Started section](getting-started/). You can also [review the s ## Docs theme notes This docs site is using the [Just the Docs theme](https://just-the-docs.github.io/just-the-docs/). Details on how to configure its metadata and navigation can be found [here](https://just-the-docs.github.io/just-the-docs/docs/navigation-structure/). + +## Frequently Asked Questions (FAQ) + +Q. Which versions of EF and EF Core can I use?
+A. Ardalis.Specification sets the minimum required version only. (EF Core 6.0.6 and EF 6.4.4) But you are free to explicity install higher versions if you like. From 6aa88ae0e6de98c78a6a4678917a359db1cc5d28 Mon Sep 17 00:00:00 2001 From: Lamadelrae Date: Sat, 29 Apr 2023 19:20:45 -0300 Subject: [PATCH 2/3] fixing mistake --- docs/getting-started/faq.md | 5 +++++ docs/index.md | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/getting-started/faq.md b/docs/getting-started/faq.md index 40bfc338..160b1fab 100644 --- a/docs/getting-started/faq.md +++ b/docs/getting-started/faq.md @@ -93,3 +93,8 @@ In this case, each element x is being "transformed" into its `Name` property. Also make sure that the base class of your Specification using `Select` is a `Specification`. See the [doc page](../features/select.md) on `Select` for a more detailed explanation. + + +## Which versions of EF and EF Core can I use? + +Ardalis.Specification sets the minimum required version only. (EF Core 6.0.6 and EF 6.4.4) But you are free to explicity install higher versions if you like. diff --git a/docs/index.md b/docs/index.md index 8a77e49e..25649482 100644 --- a/docs/index.md +++ b/docs/index.md @@ -39,8 +39,3 @@ Read the [Getting Started section](getting-started/). You can also [review the s ## Docs theme notes This docs site is using the [Just the Docs theme](https://just-the-docs.github.io/just-the-docs/). Details on how to configure its metadata and navigation can be found [here](https://just-the-docs.github.io/just-the-docs/docs/navigation-structure/). - -## Frequently Asked Questions (FAQ) - -Q. Which versions of EF and EF Core can I use?
-A. Ardalis.Specification sets the minimum required version only. (EF Core 6.0.6 and EF 6.4.4) But you are free to explicity install higher versions if you like. From 05097093e41cace7a9165afbdbec6a1396e3fd06 Mon Sep 17 00:00:00 2001 From: Lamadelrae Date: Sat, 29 Apr 2023 19:22:10 -0300 Subject: [PATCH 3/3] fixing line --- docs/getting-started/faq.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/faq.md b/docs/getting-started/faq.md index 160b1fab..3dca7e7a 100644 --- a/docs/getting-started/faq.md +++ b/docs/getting-started/faq.md @@ -94,7 +94,10 @@ Also make sure that the base class of your Specification using `Select` is a `Sp See the [doc page](../features/select.md) on `Select` for a more detailed explanation. - ## Which versions of EF and EF Core can I use? -Ardalis.Specification sets the minimum required version only. (EF Core 6.0.6 and EF 6.4.4) But you are free to explicity install higher versions if you like. +Ardalis.Specification by default sets the minimum required version. + +Which is: `EF Core 6.0.6` and `EF 6.4.4`. + +But you are free to explicitly set higher versions if you like.