I am creating a query generator based on EF and Linq.Expression. I was wondering if there is a way to get column information through something in EF.
I am looking for information about the full text index, which you can see in the property windows on SQl Server.
Can anyone help?
For information, here is a T-SQL query that retrieves this information for a PitMingTable table:
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'
thank.
source
share