Ejemplo n.º 1
0
        public bool IsExists(string tagName)
        {
            var tag = db.pb_HashTag_GetbyTagName(tagName.ToLower()).ToList();

            if (tag.Count > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }