Esempio n. 1
0
 public static void Save(ROLEEntity obj)
 {
     if (obj != null)
     {
         obj.Save();
     }
 }
Esempio n. 2
0
        /// <summary>根据主键获取一个实体</summary>
        public static ROLEEntity RetrieveAROLEEntity(string ROLEID)
        {
            ROLEEntity obj = new ROLEEntity();

            obj.ROLEID = ROLEID;
            obj.Retrieve();
            if (obj.IsPersistent)
            {
                return(obj);
            }
            else
            {
                return(null);
            }
        }