-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Description
In the README.MD is this example
[HttpGet(Name="GetAllModelsRoute")]
public async Task<IEnumerable<MyModel>> GetAllModels()
{
//... snip .. //
}But how would you implement the AddLinksAsync part?
As far as I can see ILinksService doesn't accept an IEnumerable<MyModel> as parameter for AddLinksAsync...
Something like this would be nice:
[HttpGet(Name="GetAllModelsRoute")]
public async Task<IEnumerable<MyModel>> GetAllModels()
{
var all = await _dbContext.Models.ToListAsync();
await linksService.AddLinksAsync(all);
return all;
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels