v1.0.0
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.