SquidexClientManager is no longer available in latest SquidexClient Library

Hello
In earlier versions of SquidexClientLibrary was used SquidexClientManager class.
But in last version it’s not available any more.

What to use instead now?
How to initially setup the client?

Tried to find any news and references but didn’t have success.

Was it just renamed to “SquidexClient”?

Started to realize how it works

now the Clients are the Properties

        var rulesClient = clientManager.Rules;
        builder.Services.AddSingleton(rulesClient);

        var schemasClient = clientManager.Schemas;
        builder.Services.AddSingleton(schemasClient);

Can be closed :slight_smile:
if no special notes I might miss… .Contents<T>() left the same

    var authorsClient = clientManager.Contents<Author, AuthorData>(SchemaNames.Authors);
   builder.Services.AddSingleton(authorsClient);

Thanks for moral support!

Lol

It is also subscribed in the docs, btw:
https://docs.squidex.io/02-documentation/software-development-kits/.net-standard

2 Likes

Thanks, this link was missing. Never saw it - very helpfull.