Skip to content

NikolaSivkov/YARA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YARA

Yet Another Roslyn Analyzer

##Fixes This analyzer currently provides analysis and code fix for the following cases :

#####YARA001-EFAsync Methods that have been marked async will enable diagnostic analyzer where it will point out that extension methods to EntityFramework that can be made async but are currently not and could cause performance degradations Example :

myDbContext.MyTable.ToList();
//Will be transfromed to 
await myDbContext.MyTable.ToListAsync();
myDbContext.MyTable.First(x=>x.foo =="foo");
//Will be transfromed to 
await myDbContext.MyTable.FirstAsync(x=>x.foo =="foo");
myDbContext.MyTable.Where(x=>x.foo =="foo").ToList();
//Will be transfromed to 
await myDbContext.MyTable.Where(x=>x.foo =="foo").ToListAsync();

About

Yet Another Roslyn Analyzer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published