#if NET40 using FreeSql.DataAnnotations; using System; #else using FreeSql.DataAnnotations; using System; using System.Threading.Tasks; #endif // ReSharper disable once CheckNamespace namespace FreeSql { /// /// 包括 CreateTime/UpdateTime/IsDeleted、CRUD 方法、以及 ID 主键定义 的实体基类 /// /// 当 TKey 为 int/long 时,Id 主键被设为自增值主键 /// /// /// [Table(DisableSyncStructure = true)] public abstract class BaseEntity : BaseEntity where TEntity : class { static BaseEntity() { var keyType = typeof(TKey).NullableTypeOrThis(); if (keyType == typeof(int) || keyType == typeof(long)) ConfigEntity(typeof(TEntity), t => t.Property("Id").IsIdentity(true)); } /// /// 主键 /// [Column(Position = 1)] public virtual TKey Id { get; set; } #if !NET40 /// /// 根据主键值获取数据 /// /// /// public static async Task FindAsync(TKey id) { var item = await Select.WhereDynamic(id).FirstAsync(); (item as BaseEntity)?.Attach(); return item; } #endif /// /// 根据主键值获取数据 /// /// /// public static TEntity Find(TKey id) { var item = Select.WhereDynamic(id).First(); (item as BaseEntity)?.Attach(); return item; } } /// /// 包括 CreateTime/UpdateTime/IsDeleted、以及 CRUD 异步和同步方法的实体基类 /// /// [Table(DisableSyncStructure = true)] public abstract class BaseEntity : BaseEntityAsync where TEntity : class { bool UpdateIsDeleted(bool value) { if (Repository is null) { return Orm.Update(this as TEntity) .WithTransaction(_resolveUow?.Invoke()?.GetOrBeginTransaction()) .Set(a => (a as BaseEntity).IsDeleted, IsDeleted = value).ExecuteAffrows() == 1; } IsDeleted = value; Repository.UnitOfWork = _resolveUow?.Invoke(); return Repository.Update(this as TEntity) == 1; } /// /// 删除数据 /// /// 是否物理删除 /// public virtual bool Delete(bool physicalDelete = false) { if (physicalDelete == false) return UpdateIsDeleted(true); if (Repository is null) return Orm.Delete(this as TEntity).ExecuteAffrows() == 1; Repository.UnitOfWork = _resolveUow?.Invoke(); return Repository.Delete(this as TEntity) == 1; } /// /// 恢复删除的数据 /// /// public virtual bool Restore() => UpdateIsDeleted(false); /// /// 更新数据 /// /// public virtual bool Update() { UpdateTime = DateTime.Now; if (Repository is null) { return Orm.Update() .WithTransaction(_resolveUow?.Invoke()?.GetOrBeginTransaction()) .SetSource(this as TEntity).ExecuteAffrows() == 1; } Repository.UnitOfWork = _resolveUow?.Invoke(); return Repository.Update(this as TEntity) == 1; } /// /// 插入数据 /// public virtual TEntity Insert() { CreateTime = DateTime.Now; if (Repository is null) Repository = Orm.GetRepository(); Repository.UnitOfWork = _resolveUow?.Invoke(); return Repository.Insert(this as TEntity); } /// /// 更新或插入 /// /// public virtual TEntity Save() { UpdateTime = DateTime.Now; if (Repository is null) Repository = Orm.GetRepository(); Repository.UnitOfWork = _resolveUow?.Invoke(); return Repository.InsertOrUpdate(this as TEntity); } /// /// 【完整】保存导航属性,子表 /// /// 导航属性名 public virtual void SaveMany(string navigatePropertyName) { if (Repository is null) Repository = Orm.GetRepository(); Repository.UnitOfWork = _resolveUow?.Invoke(); Repository.SaveMany(this as TEntity, navigatePropertyName); } } }