https://www.c-sharpcorner.com/UploadFile/84c85b/understanding-transactions-in-sql-server/
SQL
Watch “How to connect C# to SQL (the easy way)” on YouTube
Watch “SQL Basics for Beginners | Learn SQL | SQL Tutorial for Beginners | Edureka” on YouTube
Sharing a DataService for Five .NET UIs (WPF, MVC, Razor, Blazor, Blazor WASM) – YouTube
This is GREAT!!!
Beginners guide to accessing SQL Server through C#
Blazor + EF Core: A Simple Web App Part 1 – The Startup – Medium
TSQL Filtering by a Date
Here is a snippet of TSQL code that looks at a database and returns just by date and ordered by date.
By a Specific Date…
SELECT *
FROM [DatabaseName].[Schema].[TableName]
where Cast(LogDate as date) = '2019-06-19'
order by LogDate desc
By Todays Date…
SELECT *
FROM [DatabaseName].[Schema].[TableName]
where Cast(LogDate as date) = Cast(GetDate() as date)
order by LogDate desc