必须填写至少10个字的日志
nnhy authored at 2012-07-27 18:48:21
9.57 KiB
X
/*
 * XCoder v4.5.2011.1108
 * 作者:nnhy/X
 * 时间:2011-11-13 22:43:17
 * 版权:版权所有 (C) 新生命开发团队 2011
*/
using System;
using System.ComponentModel;
using System.Xml.Serialization;
using XCode;
#if NET4
using System.Linq;
#else
using NewLife.Linq;
#endif

namespace NewLife.CommonEntity
{
    /// <summary>模版内容</summary>
    [ModelCheckMode(ModelCheckModes.CheckTableWhenFirstUse)]
    public class TemplateContent : TemplateContent<TemplateContent> { }

    /// <summary>模版内容</summary>
    public partial class TemplateContent<TEntity> : Entity<TEntity> where TEntity : TemplateContent<TEntity>, new()
    {
        #region 扩展属性
        [NonSerialized]
        private TemplateItem _TemplateItem;
        /// <summary>该模版内容所对应的模版项</summary>
        [XmlIgnore]
        public TemplateItem TemplateItem
        {
            get
            {
                if (_TemplateItem == null && TemplateItemID > 0 && !Dirtys.ContainsKey("TemplateItem"))
                {
                    _TemplateItem = TemplateItem.FindByID(TemplateItemID);
                    Dirtys["TemplateItem"] = true;
                }
                return _TemplateItem;
            }
            set { _TemplateItem = value; }
        }

        /// <summary>该模版内容所对应的模版项名称</summary>
        [XmlIgnore]
        public String TemplateItemName { get { return TemplateItem != null ? TemplateItem.TemplateName + @"\" + TemplateItem.Name : null; } }
        #endregion

        #region 扩展查询
        /// <summary>根据模版项、版本查找</summary>
        /// <param name="templateitemid">模版项</param>
        /// <param name="version">版本</param>
        /// <returns></returns>
        [DataObjectMethod(DataObjectMethodType.Select, false)]
        public static TEntity FindByTemplateItemIDAndVersion(Int32 templateitemid, Int32 version)
        {
            return Find(new String[] { _.TemplateItemID, _.Version }, new Object[] { templateitemid, version });
        }

        /// <summary>根据作者编号查找</summary>
        /// <param name="userid">作者编号</param>
        /// <returns></returns>
        [DataObjectMethod(DataObjectMethodType.Select, false)]
        public static EntityList<TEntity> FindAllByUserID(Int32 userid)
        {
            if (Meta.Count >= 1000)
                return FindAll(new String[] { _.UserID }, new Object[] { userid });
            else // 实体缓存
                return Meta.Cache.Entities.FindAll(_.UserID, userid);
        }
        /// <summary>根据编号查找</summary>
        /// <param name="id">编号</param>
        /// <returns></returns>
        [DataObjectMethod(DataObjectMethodType.Select, false)]
        public static TEntity FindByID(Int32 id)
        {
            if (Meta.Count >= 1000)
                return Find(new String[] { _.ID }, new Object[] { id });
            else // 实体缓存
                return Meta.Cache.Entities.Find(_.ID, id);
            // 单对象缓存
            //return Meta.SingleCache[id];
        }

        /// <summary>根据模版项查找</summary>
        /// <param name="templateitemid">模版项</param>
        /// <returns></returns>
        [DataObjectMethod(DataObjectMethodType.Select, false)]
        public static EntityList<TEntity> FindAllByTemplateItemID(Int32 templateitemid)
        {
            if (Meta.Count >= 1000)
                return FindAll(new String[] { _.TemplateItemID }, new Object[] { templateitemid });
            else // 实体缓存
                return Meta.Cache.Entities.FindAll(_.TemplateItemID, templateitemid);
        }

        /// <summary>根据模版项查找最后一个版本</summary>
        /// <param name="templateitemid"></param>
        /// <returns></returns>
        public static TEntity FindLastByTemplateItemID(Int32 templateitemid)
        {
            return FindAllByName(_.TemplateItemID, templateitemid, _.Version + " Desc", 0, 1).FirstOrDefault<TEntity>();
        }
        #endregion

        #region 对象操作
        ///// <summary>
        ///// 已重载。基类先调用Valid(true)验证数据,然后在事务保护内调用OnInsert
        ///// </summary>
        ///// <returns></returns>
        //public override Int32 Insert()
        //{
        //    return base.Insert();
        //}

        ///// <summary>
        ///// 已重载。在事务保护范围内处理业务,位于Valid之后
        ///// </summary>
        ///// <returns></returns>
        //protected override Int32 OnInsert()
        //{
        //    return base.OnInsert();
        //}

        /// <summary>验证数据,通过抛出异常的方式提示验证失败。</summary>
        /// <param name="isNew"></param>
        public override void Valid(Boolean isNew)
        {
            if (isNew && !Dirtys[_.Version])
            {
                TEntity last = FindLastByTemplateItemID(TemplateItemID);
                Version = last == null ? 1 : last.Version + 1;
            }

            // 建议先调用基类方法,基类方法会对唯一索引的数据进行验证
            base.Valid(isNew);

            if (isNew && !Dirtys[_.CreateTime]) CreateTime = DateTime.Now;

            if (!Dirtys[_.UserID] && !Dirtys[_.UserName])
            {
                // 获取当前登录用户
                IManageUser user = ManageProvider.Provider.Current;
                if (user != null)
                {
                    if (user.ID is Int32) UserID = (Int32)user.ID;
                    UserName = user.ToString();
                }
            }
        }

        ///// <summary>
        ///// 首次连接数据库时初始化数据,仅用于实体类重载,用户不应该调用该方法
        ///// </summary>
        //[EditorBrowsable(EditorBrowsableState.Never)]
        //protected override void InitData()
        //{
        //    base.InitData();

        //    // InitData一般用于当数据表没有数据时添加一些默认数据,该实体类的任何第一次数据库操作都会触发该方法,默认异步调用
        //    // Meta.Count是快速取得表记录数
        //    if (Meta.Count > 0) return;

        //    // 需要注意的是,如果该方法调用了其它实体类的首次数据库操作,目标实体类的数据初始化将会在同一个线程完成
        //    if (XTrace.Debug) XTrace.WriteLine("开始初始化{0}模版内容数据……", typeof(TEntity).Name);

        //    TEntity user = new TEntity();
        //    user.Name = "admin";
        //    user.Password = DataHelper.Hash("admin");
        //    user.DisplayName = "管理员";
        //    user.RoleID = 1;
        //    user.IsEnable = true;
        //    user.Insert();

        //    if (XTrace.Debug) XTrace.WriteLine("完成初始化{0}模版内容数据!", typeof(TEntity).Name);
        //}
        #endregion

        #region 高级查询
        // 以下为自定义高级查询的例子

        ///// <summary>
        ///// 查询满足条件的记录集,分页、排序
        ///// </summary>
        ///// <param name="key">关键字</param>
        ///// <param name="orderClause">排序,不带Order By</param>
        ///// <param name="startRowIndex">开始行,0表示第一行</param>
        ///// <param name="maximumRows">最大返回行数,0表示所有行</param>
        ///// <returns>实体集</returns>
        //[DataObjectMethod(DataObjectMethodType.Select, true)]
        //public static EntityList<TEntity> Search(String key, String orderClause, Int32 startRowIndex, Int32 maximumRows)
        //{
        //    return FindAll(SearchWhere(key), orderClause, null, startRowIndex, maximumRows);
        //}

        ///// <summary>
        ///// 查询满足条件的记录总数,分页和排序无效,带参数是因为ObjectDataSource要求它跟Search统一
        ///// </summary>
        ///// <param name="key">关键字</param>
        ///// <param name="orderClause">排序,不带Order By</param>
        ///// <param name="startRowIndex">开始行,0表示第一行</param>
        ///// <param name="maximumRows">最大返回行数,0表示所有行</param>
        ///// <returns>记录数</returns>
        //public static Int32 SearchCount(String key, String orderClause, Int32 startRowIndex, Int32 maximumRows)
        //{
        //    return FindCount(SearchWhere(key), null, null, 0, 0);
        //}

        /// <summary>构造搜索条件</summary>
        /// <param name="key">关键字</param>
        /// <returns></returns>
        private static String SearchWhere(String key)
        {
            // WhereExpression重载&和|运算符,作为And和Or的替代
            WhereExpression exp = new WhereExpression();

            // SearchWhereByKeys系列方法用于构建针对字符串字段的模糊搜索
            if (!String.IsNullOrEmpty(key)) SearchWhereByKeys(exp.Builder, key);

            // 以下仅为演示,2、3行是同一个意思的不同写法,FieldItem重载了等于以外的运算符(第4行)
            //exp &= _.Name.Equal("testName")
            //    & !String.IsNullOrEmpty(key) & _.Name.Equal(key)
            //    .AndIf(!String.IsNullOrEmpty(key), _.Name.Equal(key))
            //    | _.ID > 0;

            return exp;
        }
        #endregion

        #region 扩展操作
        #endregion

        #region 业务
        #endregion
    }
}