我正在尝试使用 SQL Server 管理对象 (SMO) 检索索引上的扩展属性,但检索到的 SMO 对象有一个空的 ExtentedProperties 集合。(索引在表上。)扩展属性在那里,我在 T-SQL 中检查。此外,SMO 还可以找到扩展属性,例如数据库对象上的属性。我所做的只是
Server s = new Server(<connectionObj>);
Database db = s.Databases[<databaseName>];
int extCount = db.Tables[<tableName>]
.Indexes[<indexName>]
.ExtendedProperties
.Count
要得到
extCount == 0
我做错了吗?
干杯,
蒂尔曼
PS:这是SQL Server 2005