I am currently working on a small C # N-Tier application that uses Linq-to-Entities (SQL Express 2005 for DB) and WPF, and I am wondering what type of data collection should use my business logic level user interface .
Are there any drawbacks (performance, validation, etc.) for binding form objects such as datagridviews to IQueryable? Should I populate a DataTable in memory and pass it to the user interface? In which layer should the DataContext be initialized?
source
share