DEV Community

Discussion on: Generating a fake data in .Net Core API

Collapse
 
workcontrolgit profile image
Fuji Nguyen

Hi Mr. Nadkar,

I want to add async support. It gives the warning "the async lack await..."
Interface:
Task> Collection(int length);

Implementation:
public async Task> Collection(int length) => GenFu.GenFu.ListOf(length);

Any suggestion?