It is simple to implement to cross join in LINQ
Suppose i have 2 tables 1. Customers & 2.order
Now i want cross join on both tables
var q = from c in dataContext.Customers
from o in dataContext.Orders
select new {
c.CustomerID,
c.ContactName,
a.OrderID,
a.OrderDate
};
Thanks 🙂