With C# and SQL Server 2005 and by using DbConnection.GetSchema() method, I want to get all a table's columns (not of views) only. I have found two collection names related to this
Columnsthat returns table and views' columnsViewColumnsreturns all the view's columns
Neither of above two returns table columns only, nor they have any property to filter Table-columns.
Any help is respected.