.NET
Read more on how to use the .NET Core and .NET Standard
Introduction
The SDK is mostly generated from the OpenAPI specification. You can read the API documentation here: https://cloud.squidex.io/api/docs.
This means that the API is fully covered, including all endpoints used by the frontend. You can also use the SDK to create and configure Apps, schemas and rules.
The downside is that some of the methods are not as user-friendly as they could be. Most methods have the App name as a required parameter, which is redundant because the SDK is designed to mainly connect to a single App and has the App name as a global configuration option.
This has been changed with v15.0.0, and the developer experience has been improved. Therefore, this document includes the difference between version 15 and previous versions.
Generating Content Classes
Because of localization, the OpenAPI specification and the generated classes are very difficult to use, especially if your fields are not localized. Therefore, it is best to manually create the mapping classes for your schemas. Of course, you can also use OpenAPI to generate them.
Our recommendation is to use NSwag. The code generator is also available as a class library to automate the code generation in your CI pipeline.
Install the SDK
The SDK is available on nuget.org. You can install it with:
If you use Dependency Injection (especially in ASP.NET Core) you can use the following package:
Instantiate the SDK
As described above, the SDK has been improved with version 15. Therefore, it is best to read one of the following pages, depending on the installed version of the package.
Version v15 (and Later)Version v14 (and Earlier)Getting the Code from the Management UI
You can get the initialization code directly from the Management UI. To do so, follow the steps below:
Go to Settings (1).
Go to Clients (2).
Click the Connect (3) button next to the client.
Next, click on the third link titled Connect to your App with SDK (4) to view instructions.
On the next screen, copy (5) and paste the sample code applicable for your version to the source file.
As of this writing, SDK version 15 has not been deployed to Squidex Cloud. So Squidex Cloud will only show code for version 14.
How to Work with Content Items?
Working with content requires more work!
Why is there no Code Generation?
The reason there's no code generation is because of the JSON structure of the content data. Let's assume we have a blog-post
schema with two fields: a localized title
field and a normal (invariant) slug
field. The resulting content response would look like the following example:
When you map a structure to a C# class, every JSON object is mapped to either a dictionary or a class.
A code generator would then create the following class structure and would convert all JSON property names to a PascalCase naming to align the naming with the C# conventions. So, whenever you work with invariant fields you have to access the Iv
property to get the value.
This must be repeated for each field and would create a lot of code. Therefore, it is better to create the content classes manually and use custom converters to let the Newtonsoft JSON serialiser deal with this.
1. Create Your Class Model
For each schema two classes are needed:
The data object is the structure of your content data.
Another class is created for the blog post itself, which holds the data and metadata.
Please note that the SDK still uses Newtonsoft.JSON
and not System.Text.JSON
. Some types, such as JSONConverterAttribute
exist in both namespaces, so you have to ensure you add the user to the correct namespace. Otherwise you will get serialization exceptions, because the attributes have not been considered.
How to Map Fields to .NET Types
This depends on your field type i.e. which .NET type you use for a field.
The following is our recommendation:
Field Type | .NET Type |
---|---|
Assets |
|
Boolean |
|
DateTime |
|
Geolocation | A custom class. |
Json |
|
Number |
|
References |
|
String |
|
Tags |
|
Array | A custom class. |
Geolocation Classes
At the moment, the SDK does not provide a ready-to-use structure for geolocations, but you can use the following class:
Arrays
When you have an array field, you need a class for your array items, for example:
Please note that the InvariantConverter
is only needed for root fields.
2. Instantiate the Client
Version 15 and Above
Use the schema name and the created types as arguments.
The client is cached and therefore you can call this method as often as you want.
Version 14 and Below
Use the schema name and the created types as arguments.
Do not recreate the client for every request as it is not cached in the client manager.
3. Use the Client
Using the client is very easy, for example:
Get a Content Item by ID
Get a Content Item by ID and Version
Create a New Content Item
Update a Content Item
Query Items by Filter
Control the Casing
The SDK uses camelCasing when serializing properties, but ignores the casing when deserializing properties. This is important, because Squidex is case sensitive and does not accept unknown properties. Therefore the following data class
is serialized to
If you want to use PascalCase for your Squidex schema field names you have two options:
You can either disable the conversion to camel case with the KeepCasingAttribute
:
or you control for each property how it will be serialized.
More Samples
We also use the .NET client for API tests. These tests cover almost all endpoints and especially edge cases and are therefore a good reference if you want to understand this class library.
https://github.com/Squidex/squidex/tree/master/tools/TestSuite
Last updated