コード例 #1
0
        private string GetPropertyToolTip(MetaProperty property)
        {
            string toolTip = string.Empty;

            foreach (MetaField field in property.Fields)
            {
                toolTip += (string.IsNullOrEmpty(toolTip) ? string.Empty : Environment.NewLine)
                           + SqlUtility.CreateTableFieldScript(field).Replace("[", string.Empty).Replace("]", string.Empty);
            }
            return(toolTip);
        }