Vettvangur.DictionaryHelper
1.0.5
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Vettvangur.DictionaryHelper --version 1.0.5
NuGet\Install-Package Vettvangur.DictionaryHelper -Version 1.0.5
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="Vettvangur.DictionaryHelper" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Vettvangur.DictionaryHelper --version 1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Vettvangur.DictionaryHelper, 1.0.5"
#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.
// Install Vettvangur.DictionaryHelper as a Cake Addin #addin nuget:?package=Vettvangur.DictionaryHelper&version=1.0.5 // Install Vettvangur.DictionaryHelper as a Cake Tool #tool nuget:?package=Vettvangur.DictionaryHelper&version=1.0.5
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Umbraco DictionaryHelper
All dictionary items are fetched and inserted into concurrency dictionary cache on start up and will be accessible with an extension on Umbraco helper.
Added value: Dictionary items can be created automaticly under specific parent key or by using namespacing to create a tree.
Available on Nuget
Click here to go to nuget project page
Example of usage with Umbraco helper:
Fetches the value of the dictionary item. Returns empty string if not found.
@using DictionaryHelper;
@Umbraco.DictionaryValue("key") //Fetches the value of the dictionary item. Returns empty string if not found.
Fetches the value of the dictionary item. Returns the default value if value is empty or key not found.
@Umbraco.DictionaryValue("key", "Default value")
Fetches the value of the dictionary item. Returns the default value if value is empty or key not found and will create the dictionary item with the default value if the key is not found.
@Umbraco.DictionaryValue("key", "Default value", null, true)
Creates the dictionary key if not found as a child on the parent key.
@Umbraco.DictionaryValue("key", "Default value", "parentKey", true)
Checks if any of the keys are existing and creates them if not found. With this approach the developer does not have to create the tree in the backoffice and its easy to know where the keys are located.
@Umbraco.DictionaryValue("root.child.key", "Default value", null, true)
Example of usage with service:
using DictionaryHelper;
@Service.GetValueByKeyAndCulture("key", "en-GB")
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
- UmbracoCms.Core (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.3.0 | 222 | 10/16/2024 |
4.2.0 | 1,069 | 4/29/2024 |
4.1.0 | 1,416 | 7/7/2023 |
4.0.9 | 364 | 6/15/2023 |
4.0.8 | 174 | 6/13/2023 |
4.0.7 | 239 | 4/25/2023 |
4.0.6 | 251 | 3/24/2023 |
4.0.5 | 213 | 3/24/2023 |
4.0.4 | 256 | 3/8/2023 |
4.0.3 | 314 | 1/17/2023 |
4.0.2 | 342 | 1/13/2023 |
4.0.1 | 304 | 1/13/2023 |
4.0.0 | 304 | 1/13/2023 |
3.1.0 | 336 | 1/17/2023 |
3.0.8 | 321 | 1/13/2023 |
3.0.7 | 308 | 1/13/2023 |
3.0.6 | 324 | 1/13/2023 |
3.0.5 | 327 | 1/12/2023 |
3.0.4 | 318 | 12/29/2022 |
3.0.3 | 420 | 10/14/2022 |
3.0.2 | 412 | 10/14/2022 |
3.0.1 | 420 | 10/14/2022 |
3.0.0 | 403 | 10/12/2022 |
1.1.0 | 314 | 1/17/2023 |
1.0.10 | 405 | 11/9/2021 |
1.0.9 | 554 | 11/9/2021 |
1.0.8 | 2,762 | 10/9/2020 |
1.0.7 | 469 | 10/9/2020 |
1.0.6 | 499 | 10/8/2020 |
1.0.5 | 13,545 | 12/22/2017 |
1.0.4 | 1,103 | 12/22/2017 |
1.0.3 | 1,073 | 12/22/2017 |
1.0.2 | 1,040 | 12/22/2017 |
1.0.1 | 1,041 | 12/22/2017 |
1.0.0 | 1,211 | 12/22/2017 |
New features to create dictionary items automaticly