我正在编写LINQ to SQL语句,并且正在使用带有ON
C#中子句的普通内部联接的标准语法。
您如何在LINQ to SQL中表示以下内容:
select DealerContact.*
from Dealer
inner join DealerContact on Dealer.DealerID = DealerContact.DealerID
我正在编写LINQ to SQL语句,并且正在使用带有ON
C#中子句的普通内部联接的标准语法。
您如何在LINQ to SQL中表示以下内容:
select DealerContact.*
from Dealer
inner join DealerContact on Dealer.DealerID = DealerContact.DealerID
Answers:
它类似于:
from t1 in db.Table1
join t2 in db.Table2 on t1.field equals t2.field
select new { t1.field2, t2.field3}
为表提供一个明智的名称和字段将是一个很好的示例。:)
更新资料
我认为对于您的查询,这可能更合适:
var dealercontacts = from contact in DealerContact
join dealer in Dealer on contact.DealerId equals dealer.ID
select contact;
由于您在寻找联系人,而不是经销商。
from c or from t1
并且由于我更喜欢表达式链语法,因此您可以通过以下方式做到这一点:
var dealerContracts = DealerContact.Join(Dealer,
contact => contact.DealerId,
dealer => dealer.DealerId,
(contact, dealer) => contact);
要扩展聪明人的表达链语法答案:
如果要对两个表连接在一起的字段(例如仅对这两个表之一)进行处理(例如过滤或选择),则可以在Join方法的最终参数的lambda表达式中创建一个新对象合并这两个表,例如:
var dealerInfo = DealerContact.Join(Dealer,
dc => dc.DealerId,
d => d.DealerId,
(dc, d) => new { DealerContact = dc, Dealer = d })
.Where(dc_d => dc_d.Dealer.FirstName == "Glenn"
&& dc_d.DealerContact.City == "Chicago")
.Select(dc_d => new {
dc_d.Dealer.DealerID,
dc_d.Dealer.FirstName,
dc_d.Dealer.LastName,
dc_d.DealerContact.City,
dc_d.DealerContact.State });
有趣的部分是该示例第4行中的lambda表达式:
(dc, d) => new { DealerContact = dc, Dealer = d }
...我们在其中构造一个新的匿名类型的对象,该对象具有DealerContact和Dealer记录以及它们的所有字段作为属性。
然后,我们可以在过滤和选择结果时使用这些记录中的字段,如本示例的其余部分所示,该示例使用dc_d
匿名对象的名称作为我们构建的匿名对象的名称,该对象同时具有DealerContact和Dealer记录作为其属性。
var results = from c in db.Companies
join cn in db.Countries on c.CountryID equals cn.ID
join ct in db.Cities on c.CityID equals ct.ID
join sect in db.Sectors on c.SectorID equals sect.ID
where (c.CountryID == cn.ID) && (c.CityID == ct.ID) && (c.SectorID == company.SectorID) && (company.SectorID == sect.ID)
select new { country = cn.Name, city = ct.Name, c.ID, c.Name, c.Address1, c.Address2, c.Address3, c.CountryID, c.CityID, c.Region, c.PostCode, c.Telephone, c.Website, c.SectorID, Status = (ContactStatus)c.StatusID, sector = sect.Name };
return results.ToList();
ContactStatus
确实是一个枚举,c.StatusID
不是一个ID,而是枚举的数值。如果我是对的,(ContactStatus)c.StatusID
实际上只是将整数转换为枚举。
使用Linq Join运算符:
var q = from d in Dealer
join dc in DealerConact on d.DealerID equals dc.DealerID
select dc;
您创建一个外键,并且LINQ-to-SQL为您创建导航属性。Dealer
然后每个都有一个集合DealerContacts
,您可以选择,过滤和操作。
from contact in dealer.DealerContacts select contact
要么
context.Dealers.Select(d => d.DealerContacts)
如果不使用导航属性,则将失去LINQ-to-SQL的主要优势之一-映射对象图的部分。
基本上,LINQ join运算符对SQL没有好处。即以下查询
var r = from dealer in db.Dealers
from contact in db.DealerContact
where dealer.DealerID == contact.DealerID
select dealerContact;
将导致SQL中的INNER JOIN
join对于IEnumerable <>很有用,因为它效率更高:
from contact in db.DealerContact
子句将为每个经销商重新执行, 但对于IQueryable <>并非如此。另外,联接的灵活性也较差。
实际上,通常最好不要加入linq。有导航属性时,一种非常简洁的方式来编写linq语句是:
from dealer in db.Dealers
from contact in dealer.DealerContacts
select new { whatever you need from dealer or contact }
它将转换为where子句:
SELECT <columns>
FROM Dealer, DealerContact
WHERE Dealer.DealerID = DealerContact.DealerID
SelectMany()
。
var q=(from pd in dataContext.tblProducts join od in dataContext.tblOrders on pd.ProductID equals od.ProductID orderby od.OrderID select new { od.OrderID,
pd.ProductID,
pd.Name,
pd.UnitPrice,
od.Quantity,
od.Price,
}).ToList();
OperationDataContext odDataContext = new OperationDataContext();
var studentInfo = from student in odDataContext.STUDENTs
join course in odDataContext.COURSEs
on student.course_id equals course.course_id
select new { student.student_name, student.student_city, course.course_name, course.course_desc };
学生和课程表具有主键和外键关系的地方
var Data= (from dealer in Dealer join dealercontact in DealerContact on dealer.ID equals dealercontact.DealerID
select new{
dealer.Id,
dealercontact.ContactName
}).ToList();
var data=(from t in db.your tableName(t1)
join s in db.yourothertablename(t2) on t1.fieldname equals t2.feldname
(where condtion)).tolist();
var list = (from u in db.Users join c in db.Customers on u.CustomerId equals c.CustomerId where u.Username == username
select new {u.UserId, u.CustomerId, u.ClientId, u.RoleId, u.Username, u.Email, u.Password, u.Salt, u.Hint1, u.Hint2, u.Hint3, u.Locked, u.Active,c.ProfilePic}).First();
编写所需的表名称,并初始化选择以获取字段的结果。
从DealerContrac中的d1中加入d1上DealerContrac中的d2中。dealearid等于d2.dealerid选择新的{dealercontract。*}