Hello,
With the code below when I type "and" (or "or") it's not converted to "&&". I join the setting and video.
C#public class Person
{
public string FirstName { get; set; }
public int Age { get; set; }
}
public class Testing
{
readonly List<Person> pers = new List<Person>();
void TestingAnd()
{
var res = pers.Where(x => x.Age == 25 );
}
}
Thanks,
Hi Christian,
Thank you for detailed description of the issue. I have reproduced it and we are working on fixing it. You will be notified of our progress.