How to make get list web api in c# using entity framework in .net core(for demo).Bc'z I'm new in .net core .Please send me full solution and I have one query any person teach me full c# with .net core
Loading
How to make get list web api in c# using entity framework in .net core(for demo).Bc'z I'm new in .net core .Please send me full solution and I have one query any person teach me full c# with .net core
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Basem AlshabaniPosted Sep 3, 2021, 2:29 PM
Regarding learning core ,Below you find a link to download a simple program on MVC core.
* The idea of the program is very simple, which is to identify the types of vaccines, record those who want to be vaccinated, schedule and report to the registrars.(Currently, the notification does not work, but only a message shows that it will be reported by phone or mail)
* The reason why the software was simplified is that I was aiming through it to apply some design patterns and design principles
- The pattern used for storage purposes is the Repository Pattern
-The pattern used for defining various reporting mechanisms is the Adapter Pattern
-The pattern used for defining for notifying registrars is the Observer Pattern
https://github.com/balshabanirepo/CovidVaccinationAppintment
Notes
1.
--The API for checking user data(i.e. if telephone number is valid) should be downloaded from the next link
--The API should be run with the program at the same time or it will not be able to register those wishing to receive the vaccine.
https://github.com/balshabanirepo/TelephoneNumbersWebAPI.
--The purpose of this API is to
->demonstrate how Web API is called
->demonstrate using Single Responsibility Principle through classifying methods needed to call the API into different classes
and
2.Please change the database connection text from the settings file and then create the database using update-database from package manager console
Sagar LadPosted Sep 7, 2021, 11:46 AM
Basem AlshabaniPosted Sep 2, 2021, 2:47 AM