mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
- 修复 ISelect.ToList(true) 无效的 bug;
- 增加 IAop.ConfigEntity 配置实体特性,可实现使用其他 ORM 的实体特性,#36;
This commit is contained in:
@ -16,12 +16,6 @@ namespace FreeSql.DataAnnotations {
|
||||
/// 查询过滤SQL,实现类似 a.IsDeleted = 1 功能
|
||||
/// </summary>
|
||||
public string SelectFilter { get; set; }
|
||||
|
||||
internal bool? _RowVersion;
|
||||
/// <summary>
|
||||
/// 修改/删除时,启用行版本检查
|
||||
/// </summary>
|
||||
public bool RowVersion { get => _RowVersion ?? false; set => _RowVersion = value; }
|
||||
|
||||
internal ConcurrentDictionary<string, ColumnAttribute> _columns { get; } = new ConcurrentDictionary<string, ColumnAttribute>(StringComparer.CurrentCultureIgnoreCase);
|
||||
}
|
||||
|
Reference in New Issue
Block a user