Skip to content

Releases: MHanafy/EntityExtensions

v1.1

21 Jan 01:08
2f9b050
Compare
Choose a tag to compare

This release brings the ability of reading database generated values (Identity and calculated columns) after performing the bulk update.
BulkUpdate now supports a new parameter that controls what's read back from DB to allow finer control of performance.
Along with that, comes code reorganization to extract vendor specific code to a separate Dll, in a step to pave the road for additional vendors without compelling users to reference unnecessary Dlls that they don't use.
The code is fully backward compatible, So you code doesn't need to change after the upgrade.

Initial release

16 Oct 21:57
Compare
Choose a tag to compare

The very first version of the project, supporting:

  • Bulk insert/update/delete from SQL server
  • Exposing EF metadata (TableName, Columns, etc..)
  • UpdateOrInsert atomic operation
  • DirectDeleteByProperty, allowing to delete records directly given a property value, the property doesn't have to be a key.