I'm building a request generator based on EF and Linq.Expression. I was wondering if there is a way to get column info via something somewhere in EF.
I'm looking for the information about full text index that you can see in property windows in SQl Server.
Can someone help ?
For information, here is a T-SQL request that retrieve this info for table PitMingTable:
select sc.name, columnproperty(OBJECT_ID('PitMingTable'),sc.name,'IsFulltextIndexed')
from sysobjects so
inner join syscolumns sc on so.id = sc.id
where so.name like 'PitMingTable' and so.xtype ='u'
Thx.