开发者

What Linq to Entities statement tells me if a particular child entity exists?

Here is a foreach statement I'd like to express in Linq to Entities. It loops through child entities (attachments) of a parent entity (currentFactSheet) to see if an attachment exists with a particular FileName. How can I condense this procedural code into a Linq to Entites statement?

FactSheet currentFactSheet = mainWindow.GetCurrentFactSheet();

bool attachmen开发者_如何学编程tExists = false;
foreach (var thisAttachment in currentFactSheet.AttachmentsNav)
{
    if (thisAttachment.FileName == nameOfAttachedFile)
    {
        attachmentExists = true;
    }
}

This is a partial image showing FactSheet (left) and the Attachment entity associated via a navigation property named AttachmentsNav:

What Linq to Entities statement tells me if a particular child entity exists?

I want to query in memory entities to avoid a round trip to the database. I've found examples like this that search only the parent level. I've made many attempts, but they never bring up intellisense with the field names on my child entity (specifically Attachment.FileName).

Thanks in advance.


Try this:

bool attachmentExists = currentFactSheet.AttachmentsNav.Any(a => a.FileName == nameOfAttachedFile);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜