LINQ to Entities does not recognize the method ' ' method, and this method cannot be translated into a store expression hatası Linq sorgusunda değişken bazlı kullanmanız gerektiğini bildirir.
Hata alan kodumuz;
Where(p => p.pid == dty.pid && p.kat == kt2[katIndex + 1].konu
Hatayı çözmek için ;
string katADI = kt2[katIndex + 1].konu;
var d1 = db.daireler_.Where(p => p.pid == dty.pid && p.kat == katADI
C#,MVC,MSSQL,Windows Forms