Skip to content

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

Package Latest version About
FunQL NuGet Includes both FunQL.Core and FunQL.Linq for quick setup.
FunQL.Core NuGet Provides the core functionality, including parsing, validating, and executing requests.
FunQL.Linq NuGet Translates FunQL queries into LINQ expressions.

with .NET CLI recommended

To add the FunQL package to your project, run the following command in your terminal from your project directory:

dotnet add package FunQL

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:

  1. Select Project > Manage NuGet Packages.
  2. In the NuGet Package Manager page, choose nuget.org as the Package source.
  3. From the Browse tab, search for FunQL, select FunQL in the list, and then select Install.
  4. If you are prompted to verify the installation, select OK.

After installation, the FunQL package will be added to your project's dependencies.