SELECT pet.Id, pet.Name
FROM pet
INNER JOIN Farm f ON f.Id= pet.Id
WHERE f.Type = 'thePetType'
How do i turn that into linq?
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_23062166.html
Zones:
C#Date Answered: 01/06/2008 Grade: A Views: 4
I would like to do several linq operations and stopre the results in several different temp tables, then i want to do some linq operations on those temp tables, and I want to do this all in one lin...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_23062266.html
Zones:
C#Date Answered: 02/09/2008 Grade: B Views: 26
I am trying to export data from SQL tables to XML files. I found the following website which gives a good explanation:
http://www.hookedonlinq.com/Default.aspx?Page=LINQtoXML5MinuteOverview&Aspx...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_CSharp/Q_23195209.html
Hi,
I am using LINQ to SQL, and one thing I don't like about it, is that it automatically adds connectionstring to my .config file and use a connection string key in the generated code, since I...
http://www.experts-exchange.com/Programming/Languages/.NET/LINQ/Q_23243358.html
I am new to linq. I have a query which can't compile, and I wish to learn what would be the best practice way of solving the problem. Here is the linq (the orderby section is what's interesting)
...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_23298086.html
Zones:
C#Date Answered: 04/08/2008 Grade: A Views: 144
I am trying to convert a NOT IN sub query into the LINQ definition but can't fugure it out. Anyone have an idea?
SELECT * FROM Permissions
WHERE
Permission_ID NOT IN (
SELECT Permission_ID ...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Studio_.NET_2005/Q_23352...
Hi Experts.
I need some help figuring out how I can validate that the XML file contains specific elements.
I have a loop:
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_23464417.html
I am converting a project that i am in the process of developing to use LINQ to SQL. My problem is a scheduled process that syncs data with a 3rd party via several XML files. I am building one huge...
http://www.experts-exchange.com/Programming/Languages/.NET/LINQ/Q_23483556.html
Hi Experts,
Still learning LINQ and stuck on this one..
I have a pretty simple XML file:
Xdoc document = XDoc.Load("
<root>
<hi>
<node1></node1>
<node2></node2>
<node3></node3>
</h...
http://www.experts-exchange.com/Programming/Languages/.NET/LINQ/Q_23519443.html
Hi Experts.
I ran into a problem here and hope that I can get some help here.
Is there a way to get the next primary key ID ( identity ) of the row that's about to be added to the database with...
http://www.experts-exchange.com/Programming/Languages/.NET/LINQ/Q_23596903.html