public bool GetDataLike(String pIDParameter) { String sSQL = "SELECT " + this.GetColumns() + " FROM " + this.TableName + " WITH (NOLOCK) WHERE IDParameter LIKE " + pIDParameter.AddLikeOperator(false, true, true); return(Execute(sSQL)); }