Skip to content

Releases: maroontress/SqlBind.CSharp

Add LIMIT and OFFSET clauses (after SELECT … ORDER BY …)

18 Apr 11:58
4c94bd1
Compare
Choose a tag to compare

Requirements

  • Visual Studio 2022 (17.9) or .NET 8.0 (8.0.203)

New

  • Add the SelectTerminator interface, which has the Limit(int) and LimitOffset(int, int) methods.

Changed

  • Rename some interfaces.
  • Change the OrderBy() method to return a SelectTerminator<T> object instead of an IEnumerable<T> object. To get the same result as before, you need to add a call to the Execute() method like this: OrderBy(…).Execute().
  • Change the lifetime of the IEnumerable<T> object returned by SelectTerminator interface methods. It is now only valid as long as the corresponding Query object is valid. To get the same result as before, you must add a call to the ToList() method (e.g., Execute().ToList()).

Fix API documents

13 Apr 09:13
9f95854
Compare
Choose a tag to compare

Requirements

  • Visual Studio 2022 (17.9) or .NET 8.0 (8.0.203)

Fixed

  • Fix API documents
  • Bump version to 1.1.1

Add APIs to execute UPDATE statements

07 Apr 13:11
e659509
Compare
Choose a tag to compare

Requirements

  • Visual Studio 2022 (17.9) or .NET 8.0 (8.0.203)

New

Initial release

02 May 12:58
Compare
Choose a tag to compare

Requirements

  • Visual Studio 2022 (17.5) or .NET 7.0 (7.0.203)

New

  • Add TransactionKit class, Query interface, Table attribute, and so on.