I just started using EF, and heres what I have:
dataEntity = new ThisProject.Data.Entities();
listBoxProjects.DataSource = dataEntity.projects;
This does insert all projects in the ListBox, but I want to narrow the results. I have an integer variable named clientID, and the projects table has a field named clientid, how can I narrow the results?
Thank you
try a linq query: