Skip to content

v1.0.0

Compare
Choose a tag to compare
@NinjaRocks NinjaRocks released this 02 Oct 21:32
· 96 commits to master since this release
5d03992

Release Notes

  • Targets .Net 8.0

Schemio.Core - Provides core functionality to configure nested queries and transformers. With ability to map schema paths (XPath/JSONPath) to entity's object graph. No QueryEngine provided and requires implementing IQueryEngine to execute IQuery instances.

Release provides core functionality :-

  • IQueryEngine to implement custome query engine
  • BaseRootQuery<> & BaseChildQuery to implement parent/child queries.
  • BaseTransformere<> to implement transformer class.
  • ISchemaPathMatcher to implement custom schema language for mapping object graphs.

Schemio.SQL - Provides schemio with query engine using Dapper to execute SQL queries.

Release provides :-

  • BaseRootSQLQuery<> & BaseChildSQLQuery to implement parent/child dapper queries.
  • QueryEngine with dapper SQL query execution support.

Schemio.EntityFramework - Provides schemio with query engine using Entity Framework to execute SQL queries.

Release provides :-

  • BaseRootSQLQuery<> & BaseChildSQLQuery to implement parent/child entity framework queries.
  • QueryEngine with Entity Framework SQL query execution using DbContext.