UmbracoVault 1.2.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package UmbracoVault --version 1.2.1
NuGet\Install-Package UmbracoVault -Version 1.2.1
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="UmbracoVault" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UmbracoVault --version 1.2.1
#r "nuget: UmbracoVault, 1.2.1"
#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 UmbracoVault as a Cake Addin
#addin nuget:?package=UmbracoVault&version=1.2.1

// Install UmbracoVault as a Cake Tool
#tool nuget:?package=UmbracoVault&version=1.2.1

Vault for Umbraco is an easy-to-use, extensible ORM to quickly and easily get strongly-typed Umbraco CMS data into your views. It allows you to create lightly-decorated classes that Vault will understand how to hydrate. This gives you the full view model-style experience in Umbraco that you are accustomed to in MVC, complete with strongly-typed view properties (no more magic strings in your views).

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  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.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on UmbracoVault:

Package Downloads
UmbracoVault.Extensions.Native

An UmbracoVault extension library for the native Umbraco data type. Allows for deserializing data types to strongly typed models.

UmbracoVault.Extensions.Archetype

An UmbracoVault extension library for the Archetype data type. Allows for Archetype properties to be deserialized to strongly typed models.

UmbracoVault.Extensions.MultiUrlPicker

An UmbracoVault extension library for the MultiUrlPicker data type. Allows for Multi Url Picker properties to be deserialized to strongly typed models.

UmbracoVault.Extensions.nuPickers

An UmbracoVault extension library for the nuPickers data types. Allows for deserializing the Picker data and auto converting picked values to enums.

UmbracoVault.uComponents

Extension to Umbraco Vault for adding uComponents support.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.9 3,045 7/3/2017
1.3.9-build78 768 7/3/2017
1.3.8 939 7/3/2017
1.3.8-build76 770 7/3/2017
1.3.7 1,101 6/8/2017
1.3.7-build75 806 6/8/2017
1.3.6 919 6/8/2017
1.3.6-build73 751 6/8/2017
1.3.5 927 6/8/2017
1.3.5-build71 788 6/8/2017
1.3.4 887 6/8/2017
1.3.4-build69 773 6/8/2017
1.3.3 1,515 2/2/2017
1.3.3-build61 786 2/2/2017
1.3.2 2,057 1/31/2017
1.3.2-build58 786 1/31/2017
1.3.1 2,347 10/25/2016
1.3.0 1,316 6/21/2016
1.2.1 998 4/18/2016
1.2.0 1,367 4/15/2016

**New Feature: Lazy Loading**

         Umbraco Vault now includes support for lazy loading of properties. Properties that are expensive to hydrate,
         such as collections, can be marked as `virtual` and they will be loaded when accessed. See https://github.com/thenerdery/UmbracoVault/wiki/Lazy-property-loading
         article for more detail on this feature.

         **New Type Handlers**

           * Vault now supports nullable types for primitives and structs. See https://github.com/thenerdery/UmbracoVault/wiki/Umbraco-Data-Type---C%23-Data-Type-Grid#nullable-data-types for more detail.
           * Vault now supports mapping from JSON data stored within properties. See https://github.com/thenerdery/UmbracoVault/wiki/Umbraco-Data-Type---C%23-Data-Type-Grid#json-data for more detail.

         **Issues**

           * Fixed issue where exception would be thrown if loading an assembly threw an error. Added try/catch around logic and tracing any issues identified.
           * Fixed issue if an external assembly attempts to register a type already handled, that an exception would be thrown. A trace warning is now written instead.

         **Other**

           * Codebase has been updated to build against VS 2015 and C# 6
           * Reference sites for testing builds have been updated to the latest v6 and v7 versions, including ASP.Net MVC5
           * Various code cleanup

           This is a pretty significant release! Thanks to @NerderyMGlanzer, @technicallyerik, and @jesse-black for their contributions!