PhoneBook app with EF Core and messaging - #160
Open
Sangeerths wants to merge 3 commits into
Open
Conversation
added 3 commits
July 30, 2026 00:50
Implemented console-based PhoneBook app using .NET 10 and Entity Framework Core for SQL Server persistence. Added models for contacts, phone numbers, emails, and labels. Created service and controller layers for CRUD operations. Developed Spectre.Console UI for contact management and messaging features. Integrated Twilio (SMS) and Mailgun (email) support with .env configuration. Included solution/project files, input validation, sample environment file, and minimal README.
Added HasData configuration in OnModelCreating for Contact, PhoneNumberDetail, and EmailDetail entities. Created SeedInitialContacts migration to insert and remove seed data. Updated model snapshot and designer files to ensure database initializes with three sample contacts and related records.
Author
|
Finished...! |
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
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.
Implemented console-based PhoneBook app using .NET 10 and Entity Framework Core for SQL Server persistence. Added models for contacts, phone numbers, emails, and labels. Created service and controller layers for CRUD operations. Developed Spectre.Console UI for contact management and messaging features. Integrated Twilio (SMS) and Mailgun (email) support with .env configuration. Included solution/project files, input validation, sample environment file, and minimal README.