Purchase Solution

Entity Frame Query

Not what you're looking for?

Ask Custom Question

I have 4 values from table c.

I want to insert them into tables a,b,c,d.

Using entity queries, these tables have relations such as a.i = b.i, c.e = d.e, b.f = c.f.

How do I do that through entity queries?

Purchase this Solution

Solution Summary

This solution explains how to solve a problem related to programming languages in software development.

Solution Preview

Dear student,

var myQuery = from a in myentiryorContext.Table_a
join b in myentiryorContext.Table_b on a.i equals b.i
join c in myentiryorContext.Table_c on b.f = c.f
join d in myentiryorContext.Table_d on c.e =d.e
select new {c.Column1, c.Column2,c.Column4,c.Column3}

LINQ is a query language will allow you query the data souce ( SQL, or any data source that support ...

Purchase this Solution


Free BrainMass Quizzes
C++ Operators

This quiz tests a student's knowledge about C++ operators.

C# variables and classes

This quiz contains questions about C# classes and variables.

Basic Networking Questions

This quiz consists of some basic networking questions.

Basic UNIX commands

Use this quiz to check your knowledge of a few common UNIX commands. The quiz covers some of the most essential UNIX commands and their basic usage. If you can pass this quiz then you are clearly on your way to becoming an effective UNIX command line user.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.