Mart Leet

Results 11 issues of Mart Leet

There's many C# specific colors missing

This kind of linq-supported-include is not imported by IncludeEFU. Plain LinqToEntity: `var firstOrDefault = db.Comments.Include(x => x.Publication.Comments.Select(comment => comment.Address)).FirstOrDefault();` With IncludeEFU: `var firstOrDefault = db.Comments.IncludeEFU(db, x => x.Publication.Comments.Select(comment => comment.Address)).FirstOrDefault();`...

``` [x] feature request ``` **Expected behavior** Is it possible to filterBy a negotiated value? for example: I need all users that don´t have a specific value.

As this is launched now, will there be extension available?

enhancement

As in Microsoft C# world the stacktrace have paths formatted differently then maybe this regex can be configured? ![image](https://user-images.githubusercontent.com/3947730/110894270-3d807700-8300-11eb-8f2b-413ed2df851f.png)

Thanks for awesome plugin. There's this kinds of paths in stacktrace: in D:/Repos/src/WebApi/ShopFloor/ShopFloor.Shared/Services/OrderService.cs:line 290 Maybe Regex could allow that?

I don't use Microsoft.AspNetCore and Microsoft.AspNetCore.Mvc. I use specific packages inside of those.

Could read lock also be implemented? For now I use ReaderWriterLockSlim for this and for key based access I added dictinoary to hold instances... keyed-semaphore already have this for write...

In typescript based project I would like to ignore files from special folder and not from whole solution *.js *.js.map Also seems new files in new folder are not discovered...

enhancement
help wanted

Feature request: As seen from code gitignore is taken from solutionDirectory ``` var solutionDirectory = Path.GetDirectoryName(_dte.Solution.FullName); var gitIgnoreFile = Path.Combine(solutionDirectory, ".gitignore"); ``` I have many solutions in subfolders and .gitignore...

enhancement
help wanted
integration-git