Table of Contents

Breaking changes

Please find here some breaking changes while upgrading from previous versions

6.0

Apizr

  • [BaseAddress] Now we can set base address with the brand new BaseAddress attribure instead of the now removed WebApi, CrudEntity or MappedCrudEntity useless ones, and only if you need to set it at design time
Warning

Former WebApi, CrudEntity and MappedCrudEntity attributes have been dropped out to keep things simple and consistent.

Don't write anymore:
```csharp
[WebApi("https://reqres.in/api")]
public interface IReqResService
{
    [Get("/users")]
    Task<UserList> GetUsersAsync();
}
```

Now write:
```csharp
[BaseAddress("https://reqres.in/api")]
public interface IReqResService
{
    [Get("/users")]
    Task<UserList> GetUsersAsync();
}
```