Part 14e – OData v4 in ASP.NET WebApi – Query Options – Apply

This is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. The source code for the project can be found here. Up to now we have been creating individual controller actions for our entities either for selecting all entities or selecting entities by key. One of the powers … More Part 14e – OData v4 in ASP.NET WebApi – Query Options – Apply

Part 14d – OData v4 in ASP.NET WebApi – Query Options – COUNT

This is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. The source code for the project can be found here. Up to now we have been creating individual controller actions for our entities either for selecting all entities or selecting entities by key. One of the powers … More Part 14d – OData v4 in ASP.NET WebApi – Query Options – COUNT

Part 14c – OData v4 in ASP.NET WebApi – Query Options – EXPAND

This is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. The source code for the project can be found here. Up to now we have been creating individual controller actions for our entities either for selecting all entities or selecting entities by key. One of the powers … More Part 14c – OData v4 in ASP.NET WebApi – Query Options – EXPAND

Part 14b – OData v4 in ASP.NET WebApi – Query Options – FILTER

This is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. The source code for the project can be found here. Up to now we have been creating individual controller actions for our entities either for selecting all entities or selecting entities by key. One of the powers … More Part 14b – OData v4 in ASP.NET WebApi – Query Options – FILTER

Part 14 – OData v4 in ASP.NET WebApi – Query Options – SELECT

This is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. The source code for the project can be found here. Up to now we have been creating individual controller actions for our entities either for selecting all entities or selecting entities by key. One of the powers … More Part 14 – OData v4 in ASP.NET WebApi – Query Options – SELECT

Part 13 – OData v4 in ASP.NET WebApi – Entity Relationships

This is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. The source code for the project can be found here. Creating the Project The Project is called Part13 Entity Relationships So far in this series of blogs we have been dealing with single entities. In real world … More Part 13 – OData v4 in ASP.NET WebApi – Entity Relationships

Part 12 – OData v4 in ASP.NET WebApi – Selecting Properties

oneThis is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. The source code for the project can be found here. Get a Specific Property We have seen how OData allows us to retrieve an entire entity set collection and an individual collection. What the standard also allows … More Part 12 – OData v4 in ASP.NET WebApi – Selecting Properties

Part 11 – OData v4 in ASP.NET WebApi – Route Attributes

This is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. The source code for the project can be found here. Conventional Routes I mentioned in previous blogs that if we name our controllers and actions in a specific way, an OData request will locate the right action. … More Part 11 – OData v4 in ASP.NET WebApi – Route Attributes

Part 10 – OData v4 in ASP.NET WebApi – Alternate Key

This is a series of blogs detailing my introduction to using OData v4 with C# and ASP.NET WebApi. The source code for the project can be found here. Conventional Data Model Up to now our two code examples built the Entity Data Model (EDM) using the Conventional Data Model. We defined a model class and … More Part 10 – OData v4 in ASP.NET WebApi – Alternate Key