- Getting Started
- AgileFx Architecture
- Using Modeling Tools
- The Domain Model
- Accessing Data
- Saving Data
- Advanced Queries
- Caching
- Serialization
AgileFx Architecture
--- This page is under construction ---
A brief introduction to a LINQ-based ORM
Explaining LINQ in detail is beyond the scope of this document.All LINQ queries are converted to Expression Trees by the compiler. These expression trees are evaluated by an ORM (such as Entity Framework or Linq-to-Sql) and converted into an SQL statement which is sent to the database server. Once results are returned from the database, the ORM reads each row and converts them into corresponding objects.
For example, if the database returned 100 rows of Customers, the ORM instantiates 100 Customer objects and returns it to the application.
