#if netcore
#else
using FreeSql;
using FreeSql.DataAnnotations;
using System;
using System.Data;
using System.Diagnostics;
using System.Linq.Expressions;
using System.Threading;
using System.Threading.Tasks;
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 tkeyType = typeof(TKey)?.NullableTypeOrThis();
            if (tkeyType == typeof(int) || tkeyType == typeof(long))
                Orm.CodeFirst.ConfigEntity(typeof(TEntity),
                    t => t.Property("Id").IsIdentity(true));
        }
        /// 
        /// 主键
        /// 
        [Column(Position = 1)]
        public virtual TKey Id { get; set; }
        /// 
        /// 根据主键值获取数据
        /// 
        /// 
        /// 
        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 : BaseEntityReadOnly where TEntity : class
    {
        bool DeletedPrivate(bool value)
        {
            if (this.Repository == null)
                return Orm.Delete(this as TEntity)
                    .ExecuteAffrows() == 1;
            return this.Repository.Delete(this as TEntity) == 1;
        }
        /// 
        /// 删除数据
        /// 
        /// 
        public virtual bool Delete() => this.DeletedPrivate(true);
        /// 
        /// 更新数据
        /// 
        /// 
        public virtual bool Update()
        {
            if (this.Repository == null)
                return Orm.Update()
                    .SetSource(this as TEntity).ExecuteAffrows() == 1;
            return this.Repository.Update(this as TEntity) == 1;
        }
        /// 
        /// 插入数据
        /// 
        public virtual TEntity Insert()
        {
            if (this.Repository == null)
                this.Repository = Orm.GetRepository();
            return this.Repository.Insert(this as TEntity);
        }
        /// 
        /// 更新或插入
        /// 
        /// 
        public virtual TEntity Save()
        {
            if (this.Repository == null)
                this.Repository = Orm.GetRepository();
            return this.Repository.InsertOrUpdate(this as TEntity);
        }
        /// 
        /// 【完整】保存导航属性,子表
        /// 
        /// 导航属性名
        public virtual void SaveMany(string navigatePropertyName)
        {
            if (this.Repository == null)
                this.Repository = Orm.GetRepository();
            this.Repository.SaveMany(this as TEntity, navigatePropertyName);
        }
    }
}
#endif