-
Notifications
You must be signed in to change notification settings - Fork 6
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
Issue / Refine Layers #182
Merged
Merged
Conversation
This file contains 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
- merge `DependencyInjection` layer and extensions into ``Runtime`
- add helpers to set maxFetchDepth and showSql from features
- move set nhibernate interceptor to post build phase - move export schema to post build phase - revert changes in persistence configuration
- edit in-memory db configuration to be shared between multiple connections - update data access documentation
- add entity extensions sample - add configuration overrider and override route parts convention
cihandeniz
reviewed
Oct 10, 2024
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.
not finished the review, fix issues so far, i'll continue
samples/event-scheduler/src/Mouseless.EventScheduler/DeleteMeetingContact.cs
Outdated
Show resolved
Hide resolved
...Service.Application/Authentication/FixedBearerToken/FixedBearerTokenAuthenticationFeature.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/DataAccess/DataAccessExtensions.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/DataAccess/DataAccessLayer.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/DataAccess/PersistenceConfiguration.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/Logging/Request/RequestLoggingFeature.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/Orm/AutoMap/AutoMapOrmFeature.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/Runtime/Configuration/Settings.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/Runtime/DependencyInjection/IServiceAdder.cs
Outdated
Show resolved
Hide resolved
test/core/Baked.Test.Architecture/Architecture/Layer/ProvidingConfiguration.cs
Outdated
Show resolved
Hide resolved
- move runtime helper classes and interfaces to `Baked.Runtime` and remove extra folders - change `Settings` namespace to `Baked` - use scope with curly braces in export schema - edit schedular entity extensions sample
cihandeniz
reviewed
Oct 14, 2024
src/recipe/Baked.Recipe.Service.Application/DataAccess/Sqlite/SQLiteConfiguration.cs
Outdated
Show resolved
Hide resolved
cihandeniz
reviewed
Oct 14, 2024
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.
full review
src/recipe/Baked.Recipe.Service.Application/Database/MySql/MySqlDatabaseFeature.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/Database/PostgreSql/PostgreSqlDatabaseFeature.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/Runtime/RuntimeExtensions.cs
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/Runtime/RuntimeLayer.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/Runtime/RuntimeLayer.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/DataAccess/DataAccessLayer.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/DataAccess/DataAccessExtensions.cs
Outdated
Show resolved
Hide resolved
src/recipe/Baked.Recipe.Service.Application/DataAccess/DataAccessExtensions.cs
Outdated
Show resolved
Hide resolved
- remove `HttpServer` layer dependency of `Runtime` layer - add `ILoggingBuilder` implementation - convert `UpdateSchema` parameters to required - remove `LayerBase` generic implementation with four phases
- minor edits
- create and dispose scope for each test run - `HttpServer` register service provider accessor with request services - `TestLayer` registers service provider accessor with scope - refactor service factories and helper methods to use new service provider accessors
cihandeniz
reviewed
Oct 15, 2024
src/recipe/Baked.Recipe.Service.Application/HttpServer/RequestServicesAccessor.cs
Outdated
Show resolved
Hide resolved
- minor edits
- refactor configuring logger
cihandeniz
approved these changes
Oct 16, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Refine existing layers to provide a better developer experience.
Tasks
RuntimeLayer
DependencyInjection
Configuration
Monitoring
DataAccess
layerFluenConfiguration
as configuration targetMaxFetchDepth
andShowSql
OnDispose
ISession
factoryPostBuild
can be analternative
Additional Tasks