Geoapify.Storage 1.5.0

dotnet add package Geoapify.Storage --version 1.5.0
                    
NuGet\Install-Package Geoapify.Storage -Version 1.5.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Geoapify.Storage" Version="1.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Geoapify.Storage" Version="1.5.0" />
                    
Directory.Packages.props
<PackageReference Include="Geoapify.Storage" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Geoapify.Storage --version 1.5.0
                    
#r "nuget: Geoapify.Storage, 1.5.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Geoapify.Storage@1.5.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Geoapify.Storage&version=1.5.0
                    
Install as a Cake Addin
#tool nuget:?package=Geoapify.Storage&version=1.5.0
                    
Install as a Cake Tool

Geoapify.Storage

Adds abstract support for local storage of results from the Geoapify.SDK.

Usage

This package is normally not used in isolation, as it contains abstract definitions required for local storage, as well as the StorageUpdaterService.

After adding this package, add this to your Dependency Injection setup:

services.AddGeoapify(yourApiKey)
        .AddStorageUpdaterService(); // <-- This line is new

Do note that you also need to add some form of database for storage, e.g. Geoapify.Storage.MongoDB.

Also you can supply a config => { } argument to AddStorageUpdaterService() if you want to customize intervals etc.

Furthermore if you want to react to addresses that has changed, implement one (or more) IAddressChangedHandler classes and add those to the Dependency Injection setup.

services.AddGeoapify(yourApiKey)
        .AddStorageUpdaterService()
        .AddAddressChangedHandler<MyHandler>(); // <-- This line is new

Custom implementation

If you want to provide your own storage implementation, just implement the following interfaces and dependency inject them:

  • IAddressRepository
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Geoapify.Storage:

Package Downloads
Geoapify.Storage.MongoDB

Adds MongoDB support for local storage of results from the Geoapify.SDK.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.5.0 439 6/2/2026
1.4.0 106 5/27/2026
1.3.0 318 5/26/2026
1.2.0 223 3/6/2026
1.1.0 138 1/24/2026
1.0.0 145 12/30/2025