I upgrade my project from .Net 4.5.2 to .Net 4.8.1 and of course nuget package "NEST" upgraded too.
In the NEST 7.X version we don't have anymore the next methods: GetRepository(), CreateRepository(), DeleteRepository().
How to use this methods if I really need to use this methods in my existing code?
var getRepositoryResponse = client.GetRepository(x => x.RepositoryName("repName"));
// client it's a ElasticClient object
I expected that after updating the new version of .NET Framework 4.8.1 I could use these methods again: GetRepository(), CreateRepository(), DeleteRepository()