sethjuarez / InferenceLog

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Readme

Little app designed to create a table and insert many records into it.

SQL Server

Pull container

docker pull mcr.microsoft.com/mssql/server:2019-latest

Run container

docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=YourStrong@Passw0rd" `
   -p 1433:1433 --name sql1 --hostname sql1 `
   -d mcr.microsoft.com/mssql/server:2019-latest

Project

This project uses .NET 6.0 SDK. Make sure to download and install in advance. This folder can be opened in Visual Studio Code.

Make sure to add the nuget source:

dotnet nuget add source --name nuget.org https://api.nuget.org/v3/index.json

Connection Settings

Running

Restore:

dotnet restore

Running:

dotnet run

About


Languages

Language:C# 95.9%Language:TSQL 4.1%