Skip to content
This repository has been archived by the owner on Dec 23, 2017. It is now read-only.

Releases: psibr/Susanoo

Streaming Results

26 Oct 04:20
Compare
Choose a tag to compare

With a StreamingScope you can now stream results.

First Major Version Release

12 Oct 19:20
Compare
Choose a tag to compare

At this point the Susanoo pipeline has been reinvigorated and re-imagined with a multitude of facets for extension. You can expect this interface to remain stable and changes to come after much deliberation with the community.

DatabaseManager factory methods and WhereFilter improvements

15 May 04:15
Compare
Choose a tag to compare

DatabaseManager now has static factory methods for constructing an instance from connection strings. BuildWhereFilter will not add a condition for a parameter is null or dbnull now.

Bug Fix release and updates to the Command Modifier API

11 Mar 14:54
Compare
Choose a tag to compare

Core

  • Added AddOrReplaceCommandModifier
  • Moved Query Wrapper to be bootstrappable.

SqlServer

  • Added Total Rows Column command modifier

On the fly Filtering, sorting, and paging for SQL in Susanoo

03 Mar 15:42
Compare
Choose a tag to compare

Intelligent Filter Parameters

20 Feb 01:24
Compare
Choose a tag to compare

This release allows you to mark up an object with AllowedActions, Column, and NotMapped attributes to control when to use properties as parameters, this is helpful on very large objects where maintaining and include or exclude list could be cumbersome.

Full support for builtin Type results and custom deserializers.

17 Feb 17:06
Compare
Choose a tag to compare

Types that do NOT have public parameterless constructors are now eligible for mapping with Susanoo if a custom deserializer is provided.

Builtin types such as string that do not have empty constructors work out of the box now by using the new BuiltInTypeDeserializer that grabs ONLY the first available column in a resultset and casts as the appropriate type. Complex types such as KeyValuePair<,> can also be mapped, but require a custom deserializer. KeyValuePair<,> is included in the Susanoo.Core library and works as an example. A detailed guide of providing a ISusanooBootstrapper and custom deserializers will be coming soon, but in the meantime enjoy KeyValuePair and string!

https://www.nuget.org/packages/Susanoo.Core/0.6.3.16

Dynamic Performance and BuiltIn Type mapping

13 Feb 18:27
Compare
Choose a tag to compare

This release speeds up dynamic mapping by using a specialized structure (DynamicRow) in which the values are a simple array and a list of available columns is held separately. You can also map directly to a DynamicRow if you need a simple and performant 'bucket' of data.

Also in this release is simple type mapping for CLR types that have public parameterless constructors, capability of those without such as string are in progress.

https://www.nuget.org/packages/Susanoo.Core/0.6.2.14

Faster Dynamic bindings and cleaner code structure.

30 Jan 06:44
Compare
Choose a tag to compare
  • Improved dynamic bindings and object population after a deep dive into how the DLR works.
  • Added a structured namespace system for the pipeline.
  • SqlServer and Json packages brought up to date with core as well.

Susanoo.Json and Susanoo.SqlServer Appear

13 Jan 18:40
Compare
Choose a tag to compare

Two additional packages for functionality that is not agnostic to environment and dependencies have been added, check them out!