Link to home
Start Free TrialLog in
Avatar of feesu
feesu

asked on

WinForms - Equivilant to Object Datasource

Experts,
In WinForms, what's equivilant to Object Data Source that is there in WebForms (ASP.NET) ??
Avatar of Jorge Paulino
Jorge Paulino
Flag of Portugal image

You have the same in winforms. You can do DataGridView.DataSource = yourdatasource

Is missing me something ?
Avatar of feesu
feesu

ASKER

I meant, that when they came out with the ObjectDataSource, they recommended using it that it is faster than other objects. Is there something that i can make of the best use for performance purpose?
In WinForms you have BindingSource and Databinding. ObjectDataSource is specificaly for ASP.NET
Avatar of feesu

ASKER

What do you think of the performance load? Do i hard code the dataset or use the binding source?
ASKER CERTIFIED SOLUTION
Avatar of Jorge Paulino
Jorge Paulino
Flag of Portugal image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of feesu

ASKER

Thanks