Skip to content

Releases: guanghuang/SqlBuilder

v1.2.7.1

16 Dec 19:36
b4360c6
Compare
Choose a tag to compare

Release Notes

  • Add fromBegin parameter to SelectAll method to specify whether to insert at the beginning of the SELECT clause. If true, will insert with comma if needed.

v1.2.7

16 Dec 18:16
c06dbce
Compare
Choose a tag to compare

Release Notes

  • Update the code to support mix order of select and from. Previously, the order of select and from must be select first and from later. Now, the order of select and from could be mixed.

v1.2.6

16 Dec 13:24
0237d3e
Compare
Choose a tag to compare

Release Notes

  • Add NotMappedAttribute support for SelectAll method to exclude columns.

v1.2.5

09 Dec 20:17
24b8454
Compare
Choose a tag to compare

Release Notes

  • Add SelectAll overload methods for more than 10 types.

v1.2.4

09 Dec 01:41
8c6b9a2
Compare
Choose a tag to compare

Release Notes

  • Add SelectFrom method to generate a SELECT * FROM clause.

v1.2.3

09 Dec 01:27
8aae282
Compare
Choose a tag to compare

Release Notes

  • Add SelectFromWhere method to generate a SELECT * clause with a WHERE clause to filter by a specific property value.

v1.2.2

01 Dec 04:43
0453d81
Compare
Choose a tag to compare

Release Notes

  • Fix incorrect alias for snake case name convention.
  • Add test project and cases.

v1.2.1

01 Dec 04:05
a01b87e
Compare
Choose a tag to compare

Release Notes

  • Add prefix for missing Where, Join, Select, From, OrderBy methods.

v1.2.0

01 Dec 02:39
3039d4c
Compare
Choose a tag to compare

Release Notes

  • Add NameConvention support

v1.1.0

01 Dec 02:38
c778420
Compare
Choose a tag to compare

Release Notes

  • Add RawSql methods (Where, And, Or, OrderBy) and AppendRawSql method
  • Change parameter type from LambdaExpression to Expression<Func<T, object>> for strongly-typed expressions