Getting started¶
In this guide, we will walk you through the basics of installing FunQL .NET.
Installation¶
FunQL .NET is available as a NuGet package and can be easily installed using the .NET CLI. If you are not familiar with the .NET CLI, we recommend using the NuGet Package Manager.
NuGet packages¶
with .NET CLI recommended¶
To add the FunQL
package to your project, run the following command in your
terminal from your project directory:
Note
This command will install both FunQL.Core
and FunQL.Linq
, providing all the essential components to get you started quickly.
with NuGet¶
To install the FunQL
package in Visual Studio, follow these steps:
- Select Project > Manage NuGet Packages.
- In the NuGet Package Manager page, choose nuget.org as the Package source.
- From the Browse tab, search for FunQL, select FunQL in the list, and then select Install.
- If you are prompted to verify the installation, select OK.
After installation, the FunQL
package will be added to your project's
dependencies.