https://github.com/kevin-doolaeghe/aspnetcorewithsyncfusionexample
ASP.NET Core with Syncfusion demo
https://github.com/kevin-doolaeghe/aspnetcorewithsyncfusionexample
asp-net-core docker-compose ef-core learning razor-pages reverse-proxy sql-server syncfusion
Last synced: about 2 months ago
JSON representation
ASP.NET Core with Syncfusion demo
- Host: GitHub
- URL: https://github.com/kevin-doolaeghe/aspnetcorewithsyncfusionexample
- Owner: kevin-doolaeghe
- Created: 2023-07-14T12:30:01.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-01T23:11:02.000Z (almost 3 years ago)
- Last Synced: 2025-05-31T11:37:59.326Z (about 1 year ago)
- Topics: asp-net-core, docker-compose, ef-core, learning, razor-pages, reverse-proxy, sql-server, syncfusion
- Language: SCSS
- Homepage:
- Size: 18.4 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ASP.NET Core with Syncfusion demo | C# - ASP.NET Core - Razor Pages - Syncfusion
## Author
**Kevin DOOLAEGHE**
## References
* [Microsoft Learn - Razor Pages with Entity Framework Core in ASP.NET Core](https://learn.microsoft.com/fr-fr/aspnet/core/data/ef-rp/intro)
* [Syncfusion Website](https://www.syncfusion.com/)
## Microsoft SQL Server
* Connect to the SQL Server instance :
```
/opt/mssql-tools/bin/sqlcmd -S localhost -U SA -P "Password.123"
```
* Show all databases :
```
SELECT Name FROM sys.databases;
GO
```
* Show all tables in `Demo` database :
```
USE Demo;
GO
SELECT Name FROM sysobjects WHERE xtype='U';
GO
```
* Describe the `Records` table :
```
SELECT c.name FROM sys.columns AS c
INNER JOIN sys.tables AS t ON t.object_id = c.object_id
INNER JOIN sys.schemas AS s ON s.schema_id = t.schema_id
WHERE t.name = 'Records' AND s.name = 'dbo';
GO
```