-
Notifications
You must be signed in to change notification settings - Fork 706
Csharp/effinitive framework core #8878
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
waghanza
merged 8 commits into
the-benchmarker:develop
from
HBartosch:csharp/effinitive-framework-core
Nov 30, 2025
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
f373eb2
Add initial implementation of Effinitive framework with endpoints and…
HBartosch 4e67867
Update version format for effinitive-framework in data.json
HBartosch c9e4fbf
Fix version format in config.yaml to match the standard
HBartosch a719e2f
Update csharp/effinitive-framework/config.yaml
HBartosch b62cff2
Update csharp/effinitive-framework/web.csproj
HBartosch caec322
Remove effinitive-framework entry from data.json
HBartosch f839584
Merge branch 'csharp/effinitive-framework-core' of https://github.com…
HBartosch 90d4eb1
Fix indentation in config.yaml for consistency
HBartosch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| using EffinitiveFramework.Core; | ||
|
|
||
| var app = EffinitiveApp | ||
| .Create() | ||
| .UsePort(3000) | ||
| .MapEndpoints() | ||
| .Build(); | ||
|
|
||
| await app.RunAsync(); | ||
|
|
||
| public class RootEndpoint : AsyncEndpointBase<EmptyRequest, EmptyResponse> | ||
| { | ||
| protected override string Method => "GET"; | ||
| protected override string Route => "/"; | ||
|
|
||
| public override Task<EmptyResponse> HandleAsync( | ||
| EmptyRequest request, | ||
| CancellationToken cancellationToken = default) | ||
| { | ||
| return Task.FromResult(new EmptyResponse()); | ||
| } | ||
| } | ||
|
|
||
| public class GetUserEndpoint : AsyncEndpointBase<UserIdRequest, string> | ||
| { | ||
| protected override string Method => "GET"; | ||
| protected override string Route => "/user/{id}"; | ||
|
|
||
| public override Task<string> HandleAsync( | ||
| UserIdRequest request, | ||
| CancellationToken cancellationToken = default) | ||
| { | ||
| return Task.FromResult(request.Id); | ||
| } | ||
| } | ||
|
|
||
| public class CreateUserEndpoint : AsyncEndpointBase<EmptyRequest, EmptyResponse> | ||
| { | ||
| protected override string Method => "POST"; | ||
| protected override string Route => "/user"; | ||
|
|
||
| public override Task<EmptyResponse> HandleAsync( | ||
| EmptyRequest request, | ||
| CancellationToken cancellationToken = default) | ||
| { | ||
| return Task.FromResult(new EmptyResponse()); | ||
| } | ||
| } | ||
|
|
||
| public class EmptyRequest { } | ||
| public class EmptyResponse { } | ||
| public class UserIdRequest | ||
| { | ||
| public string Id { get; set; } = string.Empty; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| framework: | ||
| github: HBartosch/Effinitive | ||
| version: 1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk.Web"> | ||
| <PropertyGroup> | ||
| <TargetFramework>net10.0</TargetFramework> | ||
| <ImplicitUsings>enable</ImplicitUsings> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="EffinitiveFramework.Core" Version="1.0.*" /> | ||
| </ItemGroup> | ||
| </Project> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is this for ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you reffering to the CancellationToken cancellationToken = default?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or my handler like endpoints?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CancellationToken cancellationToken = default)is just a curiosity