From 84904934bea6c4c88a0a6076cdab1fe9e6559011 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fakeEmail>
Date: Wed, 18 Sep 2024 11:10:56 +0400
Subject: [PATCH 01/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index 355be2d..dc85686 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 2f7fbb0e050ef63149a7c30cca7afcf98885bc3c Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Wed, 18 Sep 2024 11:15:49 +0400
Subject: [PATCH 02/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index dc85686..355be2d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From cfeda2292c77da2e559cfc50af0c7dd9aa180780 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <scmaintenance@devexpress.com>
Date: Thu, 10 Oct 2024 14:33:51 +0300
Subject: [PATCH 03/21] Created a new file vale.yml  [skip ci]

---
 .github/workflows/vale.yml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 .github/workflows/vale.yml

diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml
new file mode 100644
index 0000000..adadc73
--- /dev/null
+++ b/.github/workflows/vale.yml
@@ -0,0 +1,26 @@
+name: vale-validation
+on:
+  pull_request:
+    paths:
+    - README.md
+
+jobs:
+  vale:
+    name: runner / vale
+    runs-on: ubuntu-latest
+    steps:
+      - name: clone repo
+        uses: actions/checkout@v4
+      - name: clone vale-styles repo
+        uses: actions/checkout@v4
+        with:
+          repository: DevExpress/vale-styles
+          path: vale-styles
+          ssh-key: ${{ secrets.VALE_STYLES_ACCESS_KEY }}
+      - name: copy vale rules to the root repo
+        run: shopt -s dotglob && cp -r ./vale-styles/vale/* .
+      - name: vale linter check
+        uses: DevExpress/vale-action@reviewdog
+        with:
+          files: README.md
+          fail_on_error: true

From bef5eaa18bfde46296548ecaf306b89d8ce6a9ab Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Wed, 16 Oct 2024 10:43:36 +0400
Subject: [PATCH 04/21] Vale auto update [skip ci]

---
 .github/workflows/vale.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml
index adadc73..068c35b 100644
--- a/.github/workflows/vale.yml
+++ b/.github/workflows/vale.yml
@@ -24,3 +24,5 @@ jobs:
         with:
           files: README.md
           fail_on_error: true
+          filter_mode: nofilter
+          reporter: github-check

From e3613a3bf526a4740586528b1ab8f207e9c48d0b Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fakeEmail>
Date: Wed, 30 Oct 2024 14:03:54 +0400
Subject: [PATCH 05/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index 355be2d..dc85686 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From aa48023503bc26a5d435ab33fccba36cb8032108 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Wed, 30 Oct 2024 14:12:03 +0400
Subject: [PATCH 06/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index dc85686..355be2d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 021a8a62493a25f2b1899a3dccffc32541c2f8d7 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fakeEmail>
Date: Wed, 22 Jan 2025 11:46:51 +0400
Subject: [PATCH 07/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index 355be2d..dc85686 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 1461def45aaa279de31fbc4c023996f86817070f Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Wed, 22 Jan 2025 11:47:06 +0400
Subject: [PATCH 08/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index dc85686..355be2d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 1b0c13053d7eb04d787a75e78996d3e1d71e38e5 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fakeEmail>
Date: Thu, 13 Feb 2025 14:32:10 +0400
Subject: [PATCH 09/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index 355be2d..dc85686 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 89c269df43f5895903566fee92ef171ba6b94dfe Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Thu, 13 Feb 2025 15:43:08 +0400
Subject: [PATCH 10/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index dc85686..355be2d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 30a5a266f5d36a7b47aa2ba84c00c004aa84b617 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fakeEmail>
Date: Fri, 14 Feb 2025 17:18:20 +0400
Subject: [PATCH 11/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index 355be2d..dc85686 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 304684ce43f5ca02241c47842f1cef93a5315923 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Fri, 14 Feb 2025 17:24:10 +0400
Subject: [PATCH 12/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index dc85686..355be2d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From d28402215ea6aefb56aef5a7e7845dc74d9617d2 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Tue, 4 Mar 2025 18:12:06 +0400
Subject: [PATCH 13/21] Vale auto update [skip ci]

---
 .github/workflows/vale.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml
index 068c35b..fc11f81 100644
--- a/.github/workflows/vale.yml
+++ b/.github/workflows/vale.yml
@@ -3,6 +3,8 @@ on:
   pull_request:
     paths:
     - README.md
+    - readme.md
+    - Readme.md
 
 jobs:
   vale:
@@ -22,7 +24,7 @@ jobs:
       - name: vale linter check
         uses: DevExpress/vale-action@reviewdog
         with:
-          files: README.md
+          files: '["README.md", "readme.md", "Readme.md"]'
           fail_on_error: true
           filter_mode: nofilter
           reporter: github-check

From 59645c52cdc20d2dc9e19ac3d24cd287ef8a11bf Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fakeEmail>
Date: Thu, 20 Mar 2025 14:41:10 +0400
Subject: [PATCH 14/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index 355be2d..dc85686 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From a4ff58d1a74c01ec9f112027334a1d3770271302 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Thu, 20 Mar 2025 14:52:15 +0400
Subject: [PATCH 15/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index dc85686..355be2d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 9581ed459b7660c2bcb54d0f0e46f5ead8926e2c Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fakeEmail>
Date: Wed, 30 Apr 2025 11:43:13 +0400
Subject: [PATCH 16/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index 355be2d..dc85686 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 5bd9c8d8d681ea1a9f6ce573d4196a65b3b3622e Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Wed, 30 Apr 2025 11:46:17 +0400
Subject: [PATCH 17/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index dc85686..355be2d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From f5778d7bc0cab1259ee3983b080cd36766846cf4 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fakeEmail>
Date: Thu, 1 May 2025 13:53:07 +0400
Subject: [PATCH 18/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index 355be2d..dc85686 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 44ca929c27b8d8604ffa39d5fb2cfab1390f973b Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Thu, 1 May 2025 13:57:15 +0400
Subject: [PATCH 19/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index dc85686..355be2d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 0f7166e97e4ca6793d07d8d5ca4abce87c4d6ea6 Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fakeEmail>
Date: Wed, 18 Jun 2025 11:40:04 +0400
Subject: [PATCH 20/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index 355be2d..dc85686 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->

From 53f3ee8b286107c3579395ac712b8b70a9d2f0fb Mon Sep 17 00:00:00 2001
From: DevExpressExampleBot <fake@test.test>
Date: Wed, 18 Jun 2025 11:45:24 +0400
Subject: [PATCH 21/21] README auto update [skip ci]

---
 Readme.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Readme.md b/Readme.md
index dc85686..355be2d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -53,9 +53,9 @@ The [ObjectDataSourceInjector](CS/xrefcoredemo/Services/ObjectDataSourceInjector
 
 The [CustomPreviewReportCustomizationService](CS/xrefcoredemo/Services/CustomPreviewReportCustomizationService.cs) assigns a data source to a report before the Report Designer generates a document for preview. In addition to that, the [CustomWebDocumentViewerOperationLogger](CS/xrefcoredemo/Services/CustomWebDocumentViewerOperationLogger.cs) service implementation is required for applications hosted on multiple web servers (Web Farm).
 <!-- feedback -->
-## Does this example address your development requirements/objectives?
-
-[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
-
+## Does this example address your development requirements/objectives?
+
+[<img src="https://www.devexpress.com/support/examples/i/yes-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=yes) [<img src="https://www.devexpress.com/support/examples/i/no-button.svg"/>](https://www.devexpress.com/support/examples/survey.xml?utm_source=github&utm_campaign=reporting-asp-net-core-inject-data-from-efcore-dbcontext-into-report-using-object-data-source&~~~was_helpful=no)
+
 (you will be redirected to DevExpress.com to submit your response)
 <!-- feedback end -->