lapots
lapots

Reputation: 13395

work with sql server views in c#

I want to load data to gridview from view in sql server. But how to do it? For example for database tables I've got different(generated by vs) table adapters like TClientTableAdapter,TShopsTableAdapter and etc. But I don't see any for view(view - TVProvider)

Upvotes: 1

Views: 133

Answers (1)

Ravindra Bagale
Ravindra Bagale

Reputation: 17655

there is no difference between table & view, you can just consider it as table & do work with that. just consider view is a table & do programme, it can load data just as table

Upvotes: 2

Related Questions