RG-3
RG-3

Reputation: 6188

Joining two tables using LINQ

I have two tables:

PlanMaster (PlanName, Product_ID)

and

ProductPoints (Entity_ID, Product_ID, Comm1, Comm2)

Now I am storing Entity_ID into a Session which is stored into an 'int':

int getEntity = Int16.Parse(Session["EntitySelected"].ToString());

I want to show in my LINQ query all of the items from above tables which has

Entity_ID = getEntity

Here is my LINQ query:

var td = from s in cv.Entity_Product_Points join r in dt.PlanMasters on s.Product_ID equals r.Product_ID
         where s.Entity_ID = getEntity
         select s;

Now its giving me an error which says:

Cannot implicitly convert type 'int?' to 'bool'

What is going wrong here? Thank you for your comments in advance!

Upvotes: 9

Views: 96338

Answers (6)

Md Shahriar
Md Shahriar

Reputation: 2736

I think this will do,

where s.Entity_ID == getEntity

Upvotes: -2

InnasiRaj
InnasiRaj

Reputation: 41

var db1 = (from a in AccYearEntity.OBLHManifests select a).ToList();
var db2 = (from a in MasterEntity.UserMasters select a).ToList();

var query = (from a in db1
             join b in db2 on a.EnteredBy equals b.UserId
             where a.LHManifestNum == LHManifestNum
             select new { LHManifestId = a.LHManifestId, LHManifestNum = a.LHManifestNum, LHManifestDate = a.LHManifestDate, StnCode = a.StnCode, Operatr = b.UserName }).FirstOrDefault();

Upvotes: 4

Kris Ivanov
Kris Ivanov

Reputation: 10598

var td =
    from s in cv.Entity_Product_Points
    join r in dt.PlanMasters on s.Product_ID equals r.Product_ID
    where s.Entity_ID == getEntity
    select s;

= not equal to ==

Upvotes: 12

John Batdorf
John Batdorf

Reputation: 2542

Shouldn't that be a double equals?

Upvotes: 4

Jacob
Jacob

Reputation: 78850

where s.Entity_ID = getEntity should be where s.Entity_ID == getEntity.

Upvotes: 5

Bala R
Bala R

Reputation: 108937

Try changing it to

 where s.Entity_ID == getEntity

Upvotes: 20

Related Questions