Releases: guanghuang/SqlBuilder
Releases · guanghuang/SqlBuilder
v1.2.7.1
v1.2.7
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
Release Notes
- Add
NotMappedAttribute
support forSelectAll
method to exclude columns.
v1.2.5
Release Notes
- Add
SelectAll
overload methods for more than 10 types.
v1.2.4
Release Notes
- Add
SelectFrom
method to generate a SELECT * FROM clause.
v1.2.3
Release Notes
- Add SelectFromWhere method to generate a SELECT * clause with a WHERE clause to filter by a specific property value.
v1.2.2
Release Notes
- Fix incorrect alias for snake case name convention.
- Add test project and cases.
v1.2.1
Release Notes
- Add prefix for missing Where, Join, Select, From, OrderBy methods.
v1.2.0
Release Notes
- Add NameConvention support
v1.1.0
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