I need to create several applications that all use a Microsoft SQL Server database. These include ASP.NET web applications, WPF desktop applications, and possibly a weird console application from time to time.
I would like to use the ADO.NET Entity Framework to access data, expand my objects for my business logic, and bind these objects to the controls in my interface.
How can I do this in each of my applications without repeating too much? If the database schema or my business logic changes, I want a simple (or automatic) way to update all my applications.
How do I create this system?
Update: I asked the following questions ...
- How to use LINQ for objects in Visual Basic?
- How to extend Entity Framework ADO.NET objects with partial classes?
Zack peterson
source share