Skip to content

Instantly share code, notes, and snippets.

@virzak
Last active February 27, 2024 09:59
Show Gist options
  • Save virzak/4f84fbd380e2fb7f08bcdf9b55c3a986 to your computer and use it in GitHub Desktop.
Save virzak/4f84fbd380e2fb7f08bcdf9b55c3a986 to your computer and use it in GitHub Desktop.
Start Window Functions EF Core app
$Project="MyProject"
dotnet new sln -o $Project
cd $Project
dotnet new gitignore
dotnet new buildprops --use-artifacts
dotnet new console -o $Project -f net8.0 --no-restore
dotnet sln add $Project
git init .
cd $Project
dotnet add package Zomp.EFCore.WindowFunctions.SqlServer --prerelease
cd ..
dotnet build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment