All --
Please help.
How can one get Linq to include extended property information from Sql Server 2005, like this...
Viewing Extended Properties
http://msdn.microsoft.com/en-us/library/ms186989(SQL.90).aspx
...so that the goal is to have that information in the Linq model itself for fast consumtion by Dynamic Data constructs, rather than having to read it from the database on-demand.
Thoughts? Ideas? Suggestions?
(Yes, I do have some reservations about pushing that raw data far away in the database, rather than keeping it close in the business-layer itself. However, I may opt for using the Sql Server "Description" extended property information regardless. Given that I must always deploy non-updatable pre-compiled and given that I use the Hugati DbmlTool to sync my Linq model and the database which is virtually a touchless sync, there seems to be little reason for avoiding SQL storage of the raw data. Maybe. I am just now trying to see if it can be done and how. If you think this is a particularly bad idea, then I respect that and want to hear your reasons.)
Thank you.
-- Mark Kamoski