Skip to content

Commit d062312

Browse files
author
Ovan Crone
committed
✨ Add EntityFramework Core support
- Redesign scenarios into templates to allow easy addition of providers - Bulk Create returns state machines now instead of void - Add scenarios for deletion and bulk creation - Provider tests have to be commented out to run now except in-memory EF core providers
1 parent 51dc2e1 commit d062312

File tree

46 files changed

+1492
-391
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1492
-391
lines changed

REstate.sln

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27130.2003
4+
VisualStudioVersion = 15.0.27130.2020
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "REstate", "src\REstate\REstate.csproj", "{8B02FF53-A9F3-4004-8CDC-32831070957D}"
77
EndProject
@@ -29,6 +29,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "REstate.Remote.Tests", "tes
2929
EndProject
3030
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Semaphore", "src\Examples\Semaphore\Semaphore.csproj", "{F15E390F-EFCF-4848-96C8-597BD75B7F9C}"
3131
EndProject
32+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "REstate.Engine.Repositories.EntityFrameworkCore", "src\REstate.Engine.Repositories.EntityFrameworkCore\REstate.Engine.Repositories.EntityFrameworkCore.csproj", "{3E0263FE-540E-401E-818A-CB51350D30C2}"
33+
EndProject
34+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "REstate.Engine.Repositories.EntityFrameworkCore.Tests", "test\REstate.Engine.Repositories.EntityFrameworkCore.Tests\REstate.Engine.Repositories.EntityFrameworkCore.Tests.csproj", "{5F424F7B-4840-414D-9FA3-7700D81AD898}"
35+
EndProject
3236
Global
3337
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3438
Debug|Any CPU = Debug|Any CPU
@@ -71,6 +75,14 @@ Global
7175
{F15E390F-EFCF-4848-96C8-597BD75B7F9C}.Debug|Any CPU.Build.0 = Debug|Any CPU
7276
{F15E390F-EFCF-4848-96C8-597BD75B7F9C}.Release|Any CPU.ActiveCfg = Release|Any CPU
7377
{F15E390F-EFCF-4848-96C8-597BD75B7F9C}.Release|Any CPU.Build.0 = Release|Any CPU
78+
{3E0263FE-540E-401E-818A-CB51350D30C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
79+
{3E0263FE-540E-401E-818A-CB51350D30C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
80+
{3E0263FE-540E-401E-818A-CB51350D30C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
81+
{3E0263FE-540E-401E-818A-CB51350D30C2}.Release|Any CPU.Build.0 = Release|Any CPU
82+
{5F424F7B-4840-414D-9FA3-7700D81AD898}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
83+
{5F424F7B-4840-414D-9FA3-7700D81AD898}.Debug|Any CPU.Build.0 = Debug|Any CPU
84+
{5F424F7B-4840-414D-9FA3-7700D81AD898}.Release|Any CPU.ActiveCfg = Release|Any CPU
85+
{5F424F7B-4840-414D-9FA3-7700D81AD898}.Release|Any CPU.Build.0 = Release|Any CPU
7486
EndGlobalSection
7587
GlobalSection(SolutionProperties) = preSolution
7688
HideSolutionNode = FALSE
@@ -86,6 +98,8 @@ Global
8698
{7E243087-D506-4D89-BB66-83C6DE063778} = {88B4B54C-3DA1-40D2-8DCB-0181DD035955}
8799
{C64BFCFB-3BF8-4662-A274-7ACC324232CD} = {88B4B54C-3DA1-40D2-8DCB-0181DD035955}
88100
{F15E390F-EFCF-4848-96C8-597BD75B7F9C} = {20BCC0A3-8FEB-4EFF-A175-22D1E3E4E233}
101+
{3E0263FE-540E-401E-818A-CB51350D30C2} = {90E8D167-048D-467B-81D5-1007247226A3}
102+
{5F424F7B-4840-414D-9FA3-7700D81AD898} = {88B4B54C-3DA1-40D2-8DCB-0181DD035955}
89103
EndGlobalSection
90104
GlobalSection(ExtensibilityGlobals) = postSolution
91105
SolutionGuid = {0C35B35D-40C1-4521-BF0A-C5A6D7BFF4CD}

src/REstate.Engine.Connectors.AzureServiceBus/REstate.Engine.Connectors.AzureServiceBus.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="MessagePack" Version="1.7.2" />
9+
<PackageReference Include="MessagePack" Version="1.7.3.2" />
1010
<PackageReference Include="Microsoft.Azure.ServiceBus" Version="1.0.0" />
1111
</ItemGroup>
1212

0 commit comments

Comments
 (0)