VirtualObjects 1.3.16

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

// Install VirtualObjects as a Cake Tool
#tool nuget:?package=VirtualObjects&version=1.3.16

Easy and Fast ORM Framework

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

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
1.3.21 2,491 8/12/2015
1.3.21-beta7 1,358 7/3/2015
1.3.21-beta6 1,279 7/1/2015
1.3.21-beta5 1,379 6/4/2015
1.3.20 1,584 5/27/2015
1.3.19 1,722 11/26/2014
1.3.18 1,546 10/1/2014
1.3.17 1,549 7/6/2014
1.3.16 1,554 7/2/2014
1.3.15 1,590 6/18/2014
1.3.14 1,538 6/10/2014
1.3.13 1,531 6/7/2014
1.3.12 1,527 5/30/2014
1.3.11 1,525 5/24/2014
1.3.10 1,495 5/12/2014
1.3.1 1,553 5/6/2014
1.3.0 1,899 4/9/2014
1.1.2 1,894 4/1/2014
1.1.1 1,662 3/29/2014
1.1.0 1,665 3/28/2014
1.1.0-RC 1,609 3/25/2014
1.0.7-Beta 1,441 3/7/2014
1.0.6-Beta 1,456 2/28/2014
1.0.1-Beta 1,526 2/17/2014
1.0.0.41-alpha 1,509 2/5/2014

Version 1.3.16
     * Fix: Translation join into with group by clause was faulty.
     * Linq #36: Support ToUpper and ToLower on string predicates and projections.
     * Linq #38: Support ToString and Substring.
     * Linq #40: Support Convert.ToXXX
     * small bug fixes.

     Version 1.3.15
     * Fix: DerivedTypes didn't map at all.
     * Fix: Throw exception when unable to compile generated code.
     * Fix: Added base type assemblies to the code compiler.
     * Fix #32: Added base type assemblies of generic arguments used on dynamic types to the code compiler.
     * Feature: Generate code to files.
     * -1: Removed scaffolders from this project. See VirtualObjects.Scaffolders nuget package.

     Version 1.3.14
     * Fix: Wrong convertion to SqlParameter over OLEDbConnection.
     * Change: Joins now translate into Left Joins. Apply filter if needed.

     Version 1.3.13
     * Scaffold Feature: IRepository extension method to access transation and acquire the lock.
     * Fix: Lock release must clear cached lock.
     * Fix: Boolean should never be stored as null.
     * Fix: StoreProcedure result was not captured.

     Version 1.3.12
     * Feature #28: Enable the transaction to create a lock.
     * Feature #27: Enable the session to execute stored procedures.

     Version 1.3.11
     * Fix: After commit a close must be done.
     * Fix: Values should be null if equal to the default type value.

     Version 1.3.10
     * Small bug fixes

     Version 1.3.1
     * Fix: Runtime Generated assemblies use the fullname to avoid collisions.
     * Fix: Values need to be set to null when injected into db.
     * Fix: Issue #17 (Count with boolean field and other predicates miss a ')').
     * Fix: Issue #18 (When loading a collection field it should use the matching key fields to filter the collection.)
     * Improvement: Scaffold business lets you choose the target folder.

     Version 1.3.0
     * MARS (Multiple Active Result Sets) support.
     * IOC configurations handcoded. Removed Ninject overhead.
     * Feature: All queries are now lazy loaded. .ToList() is required to obter data immediately.
     * Fix: Connections were not properly closed sometimes.
     * Fix: Scaffold Models remake using powershell only. Reason: sometimes wasn't possible to load assemblies needed.
     * Improvement: Scaffold Models its a bit faster now.

     Version 1.1.2
     * Fix: Scaffold Models invalid path error.

     Version 1.1.1
     * Package update to the latest versions.

     Version 1.1.0
     * Fix: In some cases the keep alive was not enabling the rollback.
     * Improvement: Dynamic generated assemblies are cached using the base assembly version.
     * Improvement: Dynamic generated assemblies are cached near execution.
     * Scaffold Fix: Limit the number of recursive tries to find the VirtualObjects package folder.

     Version 1.1.0-rc
     * Mapping performance improved.
     * Lazy load of related fields, and related collection improved.
     * Improved Bind of Related fields.
     * Small bug fixes.

     Version 1.0.7-Beta:
     * Improved Scaffolders.
     * Feature: Enable computed columns to be read.
     * Linq Support: Count, Max, Min, Avg, Sum, etc. after group and joins.
     * Linq Support: Use key member on projection.
     * Linq Support: Join and Group.
     * Linq Support: Group by multiple fields.

     Version 1.0.6-Beta:
     * Small bug fixes.
     * Nuget package changes.

     Version 1.0.2-Beta:
     * Fixed: ForeignKeys were not fully mapped.
     * Feature: Enable fields to be ignored.
     * Added Scaffolder Models.
     * Added Scaffolder Repository.
     * Added Scaffolder Business.
     * Added Scaffolder Config.

     Version 1.0.1-Beta:
     * Multiple bug fixes.
     * Improved support for Linq with Unions and Dates.