Column.ExtendedProperties

R

rodchar

hey all,
is it possible to automatically populate this from the extended properties
of a field in a sql server database. for example, when you do da.fill(dt)?

thanks,
rodchar
 
P

Peter Bromberg [C# MVP]

Not that I know of. ExtendedProperties is a PropertyCollection associated
with the DataSet class, for storing custom items. I know no way to populate
this directly from a SQL operation such as the Fill method of a DataAdapter.
Of course if you have found a way to read SQL Server Database extended
properties and put them into a resultset that can be populated into a
DataSet, you could use that to add to the ExtendedProperties
propertyCollection of the DataSet itself after you get out your data.
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
MetaFinder: http://www.blogmetafinder.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top