- WPF
- Prism
- Entity Framework Core
- SQL Server Express LocalDB
- Fody.PropertyChanged
UI libraries and controls:
-
dotnet tool install --global dotnet-ef
-
An IDE or Editor of your choice
> git clone https://github.com/oskvr/HotelBooking.git HotelBooking
> cd HotelBooking/HotelBooking.DAL
> dotnet ef migrations add Init
> dotnet ef database update
> cd ../HotelBooking.Presentation
> dotnet run
or
Using the Package Manager Console in Visual Studio:
- Change the "Default Project" to HotelBooking.DAL and run:
> add-migration Init
> update-database
MIT