Skip to content

Implement async tasks #1

@LazyTarget

Description

@LazyTarget

Async await pattern

Example:
var entity = await Service.GetEntity(id);
var entities = await Service.GetEntities();

public async Task<Entity> GetEntity(long id) {
    return new Entity {
        ID = id
    };
}

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions