Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
bc40b06
Select defalt table to keep log details
mjimdev Aug 19, 2022
781e518
Convert DetailsSchema to lower
mjimdev Aug 19, 2022
485f1e2
Fixing the issues: time out and Bad gateway
mjimdev Aug 30, 2022
2e1cde0
Changing the modules AspNetCoreModule by AspNetCoreModuleV2
mjimdev Aug 30, 2022
243657c
listing executed rules by ErrorSeverityLevel
mjimdev Aug 31, 2022
c2b9ac4
Implementing lazy loading
mjimdev Dec 1, 2022
f67f658
Adding postgres functionality and fixing log details issue
mjimdev Dec 8, 2022
4b2434a
Merge branch 'main' into F-LogDetail
mjimdev Dec 12, 2022
d5ebba9
Data Checker ValidationRun tracking table
mjimdev Jan 20, 2023
e6096ee
Data Checker ValidationRun tracking table
mjimdev Jan 25, 2023
111c911
Removing new catalogs inserts
mjimdev Jan 26, 2023
c46353b
initializing Validation RunId
mjimdev Jan 26, 2023
72d2d47
Validation Run Migration
mjimdev Jan 26, 2023
3f750d5
Fixing Data Checker Migration error
mjimdev Jan 30, 2023
fc1e7d5
Changing the Instructions for migrations
mjimdev Jan 31, 2023
a498bb3
Formating Migration Instructions
mjimdev Jan 31, 2023
aa7b5d0
Setting Nullable to the correct columns
mjimdev Feb 2, 2023
5e0656b
Changing some columns
mjimdev Feb 3, 2023
6c147c1
Changing some nullable columns
mjimdev Feb 3, 2023
5ddd5f4
Fixing Migration Issues and Completing the documentation
mjimdev Feb 3, 2023
c26f20f
Fixing Data Checker diferences between RuleExecutionLogs Results and …
mjimdev Feb 3, 2023
cbd585e
Changing the Authentication mode in the connection strings
mjimdev Feb 17, 2023
9c37409
Changing the Security Protocol, to solve the issue (ticket 2284)
mjimdev Feb 20, 2023
4bafc84
Adding known Issues section
mjimdev Feb 28, 2023
2fe9a46
Merge branch 'main' into Development
mjimdev Feb 28, 2023
1b74e63
Adding Separated Migrations Project(SqlServer and Postgres)
mjimdev Mar 6, 2023
f4db450
Updating Migration documentation
mjimdev Mar 6, 2023
1257689
Update Readme.md
mjimdev Mar 7, 2023
00181f1
Update Readme.md
mjimdev Mar 7, 2023
b5463d1
Fixing command-line option for running validation rules
mjimdev Mar 7, 2023
6ce1c37
Merge branch 'Development' of github.com:Ed-Fi-Exchange-OSS/DataCheck…
mjimdev Mar 7, 2023
1bec41b
Update Readme.md
mjimdev Mar 8, 2023
da5d3f4
Changing Docker file to copy Migrations.SqlServer and Migrations.Pos…
mjimdev Mar 14, 2023
c1f7f51
Merge branch 'Development' of github.com:Ed-Fi-Exchange-OSS/DataCheck…
mjimdev Mar 14, 2023
d14e9c3
Fixing the implementation type for IRuleExecService
mjimdev Mar 28, 2023
d1b2227
Data Checker result is reporting (-1), Fixing the issue reported in E…
mjimdev Apr 4, 2023
05b587b
Fixing the TOP clause for SQL Server statements
mjimdev Apr 4, 2023
93d776a
EDFI-2372 Update DataChecker to latest .NET Core
mjimdev Apr 10, 2023
c008f54
EDFI-2372 Update DataChecker to latest .NET Core
mjimdev Apr 10, 2023
d2b3e2e
Changing default db
mjimdev Apr 10, 2023
a2c1210
Validate getDate() function between sqlserver && postgres
mjimdev Apr 10, 2023
010e84d
Adding TrustServerCertificate to sql server connection
mjimdev May 31, 2023
6354d4b
Update Readme.md
mjimdev May 31, 2023
4d63ef8
Update Readme.md
mjimdev May 31, 2023
83f8f29
fixing the result
mjimdev May 31, 2023
965b28d
fix the error : Incorrect syntax near ';' when clicking on TEST SQL b…
mjimdev Jun 5, 2023
5356c04
Update Readme.md
mjimdev Jun 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\MSDF.DataChecker.Persistence\MSDF.DataChecker.Persistence.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="Migrations\" />
</ItemGroup>

</Project>
Loading