UmbracoVault
UmbracoVault copied to clipboard
An easy-to-use, extensible ORM to quickly and easily convert Umbraco documents to C# objects
Is it possible map these objects ``` [UmbracoEntity(AutoMap = true)] public class Master { public M4_1 M4_1 { get; set; } //composition type } [UmbracoEntity(AutoMap = true)] public class M4_1...
# It would be cool to be able to do something like: ``` Vault.Context.GetAncestors() Vault.Context.GetChildren() Vault.Context.GetDescendents() ``` If you want to get a bunch of documents that inherit from the...
Currently when an inheritance model is used, behavior within Vault is undefined. For example, for the Castle factory, this test currently passes ``` csharp public class InnerClassNoAttributeExtendsBaseClassAutoMap : BaseClassWithAutoMap {...
On multi-site instances you might want to get all documents by type, within the site you are currently in. We ended up writing an extension method like this. Worth adding...