博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CRM2011 linq 查询
阅读量:5099 次
发布时间:2019-06-13

本文共 1014 字,大约阅读时间需要 3 分钟。

 
//
*****************************************************************************************************************
//
LNQ Retrieving related entity columns (for 1 to N relationships)
//
*****************************************************************************************************************
System.Console.WriteLine();
System.Console.WriteLine(
"
List of Contact and Account Info by retrieving related entity columns
"
);
System.Console.WriteLine(
"
======================================
"
);
var query_retrieve1
=
from c
in
context.ContactSet
join a
in
context.AccountSet on c.ContactId equals a.PrimaryContactId.Id
where
c.ContactId
!=
_contactid2
select
new
{ Contact
=
c, Account
=
a };
foreach
(var c
in
query_retrieve1)
{
System.Console.WriteLine(
"
Acct:
"
+
c.Account.Name
+
"
\t\t
"
+
"
Contact:
"
+
c.Contact.FullName);
}
System.Console.WriteLine(
"
=====================================
"
);
System.Console.WriteLine();

转载于:https://www.cnblogs.com/hellohongfu/archive/2011/05/13/2045747.html

你可能感兴趣的文章
Android Weekly Notes Issue #221
查看>>
mmap和MappedByteBuffer
查看>>
Linux的基本操作
查看>>
C 算法
查看>>
使用fiddler进程弱网测试
查看>>
jdk path
查看>>
敏捷开发笔记 - 设计
查看>>
我需要在电脑上安装C编译器
查看>>
oracle一次删除多张表
查看>>
H3C 配置CHAP验证
查看>>
H3C ICMP
查看>>
Python Numpy 介绍
查看>>
element对象
查看>>
Android SQLite (一) 数据库简介
查看>>
HashMap和HashSet的区别
查看>>
python-2:基础点滴 字符串函数之一 str
查看>>
5233杨光--第十三周学习总结
查看>>
【Java】Java环境变量配置
查看>>
jQuery给标签写入内容
查看>>
【GoLang】golang 微服务框架 介绍
查看>>