Skip to content

Releases: Entity-Access/entity-access

v1.0.403

15 Feb 09:53
Compare
Choose a tag to compare

Full Changelog: v1.0.376...v1.0.403

  1. Added isJson in Sql Functions.
  2. Added updateSelect to perform select after updating values.
  3. Added High performance Json Serialization, which serializes json asynchronously.
  4. Json Serialization is non recursive function which reduces pressure on stack.
  5. Added preJson event that is executed before json serilalization

v1.0.376

22 Nov 04:00
Compare
Choose a tag to compare

Full Changelog: v1.0.365...v1.0.376

  1. Added register disposable in DI Scope
  2. ForeignKeyConstraint added for RelateOne
  3. Multiple transactions in single scope fixed
  4. Added error message parameter for firstOrFail

v1.0.365

17 Oct 06:55
Compare
Choose a tag to compare

Full Changelog: v1.0.364...v1.0.365

  1. QueryExpander's parentType fixed.

v1.0.364

10 Oct 05:24
Compare
Choose a tag to compare

Full Changelog: v1.0.346...v1.0.364

  1. Made null not distinct on Postgres as default.
  2. Index creation issue fixed on Postgres.
  3. Null check made explicit in direct statements.
  4. Added unit test for insertInto.
  5. Added ThrottleGroup for workflows.
  6. Duplicate ChangeSet detection fixed.
  7. Added DateTime as Default type for Postgres and Sql Server drivers.

v1.0.346

23 Jul 12:30
Compare
Choose a tag to compare

What's Changed

  1. Added simple statements for direct execution instead of saveDirect.
  2. Added missing negate experession

Full Changelog: v1.0.320...v1.0.346

v1.0.320

06 Jul 10:06
Compare
Choose a tag to compare

Full Changelog: v1.0.301...v1.0.320

  1. Added sum of items, see below.
  2. Projection with filter fixed.
  3. Sql transformer rewritten to improve speed.
  4. Added transaction save points.
  5. likeAny query improved for Postgres.
  6. Added text length function like Sql.text.length(.)
  7. Added updateSelect
  8. Improved SaveChanges with directly generated queries instead of query expressions
Sql.coll.sum( (x) => x.products
      .map((p) => ({
         total: 1,
         paid: p.orders
               .filter((o) => o.status === "paid")
               .some((o) => true) ? 1 : 0
      }) )

This way you can get count of all orders and paid ones in a single call.

v1.0.301

20 Jun 04:51
Compare
Choose a tag to compare

Full Changelog: v1.0.290...v1.0.301

  1. Added trace in save options, you can view every query executed in save changes.
  2. Constraint name check fixed for postgres.
  3. Added FK constraint name.
  4. Include relation fixed.

v1.0.290

01 Jun 14:39
Compare
Choose a tag to compare

What's Changed

  • Added Check Constraints

  • Added task groups in workflows

  • Added throttle group in workflows

  • Fixed limit/offset in projections

  • Transaction auto commit on error replaced with rollback

  • Dev by @ackava in #56

  • Merge main by @ackava in #58

Full Changelog: v1.0.260...v1.0.290

v1.0.260

14 Feb 06:38
Compare
Choose a tag to compare

Full Changelog: v1.0.253...v1.0.260

  1. RelationMapper fixed for multiple foreign keys

v1.0.253

13 Feb 13:18
Compare
Choose a tag to compare

Full Changelog: v1.0.251...v1.0.253

  1. Added support for multiple foreign key navigation property.