2
Reply

How to join between two table in CE?

Hamid Khan

Hamid Khan

7y
455
0
Reply

    there are many type like Inner , Outer , full and cross join , you can find more here : http://asp-dotnet-mvc-tutorials.blogspot.in/

    var result= from p in DbContext.Personjoin c in DbContext.Customers on p.PersonId equals c.PersonIdwhere c.CountryName.ToLower() == "india"select p;