I have an issue where my database has a table named "Task" so each time i generate with this tool I have to manually remove the
using System.Threading.Tasks
and add "System.Threading.Tasks" in front of every
Task<int> SaveChangesAsync();
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
such that:
System.Threading.Tasks.Task<int> SaveChangesAsync();
System.Threading.Tasks.Task<int> SaveChangesAsync(CancellationToken cancellationToken);
Is it somehow possible to automatize this?
using System.Threading.Tasks
and add "System.Threading.Tasks" in front of every
Task<int> SaveChangesAsync();
Task<int> SaveChangesAsync(CancellationToken cancellationToken);
such that:
System.Threading.Tasks.Task<int> SaveChangesAsync();
System.Threading.Tasks.Task<int> SaveChangesAsync(CancellationToken cancellationToken);
Is it somehow possible to automatize this?