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
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!
Thanks, this link was missing. Never saw it - very helpfull.