efcore 3.1 does not support querying with string concatenation?
问题 Is there any way to query with EFCore 3.1 by joining multiple fields together with String.Format, or $"{}" or just the traditional "" + "" + ""? I have this code: await this.Db.ACoolDbSet.Where(y => y.Plums + " " + y.Pears == "LOL").ToListAsync(); Plums and Pears are integers. It results in this error: System.InvalidOperationException: 'Null TypeMapping in Sql Tree' Is this expected? This exception was originally thrown at this call stack: Microsoft.EntityFrameworkCore.Query