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?
Comments: This has now been resolved and will be in the next release. See changeset https://efreversepoco.codeplex.com/SourceControl/changeset/4a617c470879
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?
Comments: This has now been resolved and will be in the next release. See changeset https://efreversepoco.codeplex.com/SourceControl/changeset/4a617c470879