mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 20:38:16 +08:00
- 优化 ISelect.GroupBy 查询,增加 .Value 实现聚合源字段查询,ToList(a => a.Sum(a.Value.Score));
- 增加 Expression string.Concat;
This commit is contained in:
@ -3,7 +3,16 @@
|
||||
namespace FreeSql.Internal.Model {
|
||||
class SelectTableInfo {
|
||||
public TableInfo Table { get; set; }
|
||||
public string Alias { get; set; }
|
||||
|
||||
private string _alias;
|
||||
public string Alias {
|
||||
get => _alias;
|
||||
set {
|
||||
_alias = value;
|
||||
if (string.IsNullOrEmpty(AliasInit)) AliasInit = value;
|
||||
}
|
||||
}
|
||||
public string AliasInit { get; set; }
|
||||
public string On { get; set; }
|
||||
public string NavigateCondition { get; set; }
|
||||
public ParameterExpression Parameter { get; set; }
|
||||
|
Reference in New Issue
Block a user