Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r-manimaran/dotnet8solutions
Dotnet 8 solutions with multiple .net features project
https://github.com/r-manimaran/dotnet8solutions
aspire-hosting fluentemail healthcheck metris password-hashing refit service-discovery unitofwork-pattern
Last synced: about 1 month ago
JSON representation
Dotnet 8 solutions with multiple .net features project
- Host: GitHub
- URL: https://github.com/r-manimaran/dotnet8solutions
- Owner: r-manimaran
- Created: 2024-02-27T15:52:12.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-11-30T04:37:15.000Z (about 1 month ago)
- Last Synced: 2024-11-30T05:24:02.106Z (about 1 month ago)
- Topics: aspire-hosting, fluentemail, healthcheck, metris, password-hashing, refit, service-discovery, unitofwork-pattern
- Language: C#
- Homepage:
- Size: 1.06 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# .Net Projects
### Project 1: Using Refit
- Use Refit as HttpClient to interact with other APIs### Project 2: Using UUID
- Alternative to GUID
- Performance issue are more, if used GUID in database as primary key.
- UUID can be sortable.### Project 3: Using Connetingapps.Refit.Openai
- use Refit.Openai to connect to OpenAI GPT model
- Perform Image Generation and Text embedding### Project 4: Password Hash with salt
- User Registration with password.
- create hash Store the hashed password hash in DB (InMemory DB)
- Test the Login User with logged in user password and hashed value from DB