Is it a way to retrieve the view’s column description from the base table (fn_listextendedproperty)?
The following syntax only list down the column name from the view
SELECT *
FROM sys.columns c
JOIN sys.views v on c.OBJECT_ID = V.OBJECT_ID
JOIN sys.schemas s ON s.schema_id = v.schema_id
and V.NAME = 'v_ProductInfo'
Finally i got the answer.