Problems with LINQ?
Hi,
having this piece of code
IEnumerable<WarehouseEntities.Project> projects =
from p in db.Projects
where p.Nummer == Number
select new WarehouseEntities.Project
{
Number = p.Nummer,
GenericTerm = p.Oberbegriff,
ProjectName = p.PROJEKTBezeichnung,
};
4.0 states that (beginning at "where p.Nummer") "Cannot resolve symbol 'p'".
Should this be resolved by the current Build or is this not implemented actually?
Alex
Please sign in to leave a comment.
Alexander Zeitler wrote:
Hi Alex,
As stated in the release notes, there is currently no LINQ support:
http://www.jetbrains.net/confluence/display/ReSharper/ReSharper4.0EAP+Notes
Ciao,
Jens
Thanks,
Alex