Answers for "linq from multiple tables"

C#
0

linq from multiple tables

from p in Product
from c in Catalog
from m in Manufacturer
where c.Id == p.CatalogId && m.Id == p.ManufacturerId && p.Active == 1
select new 
    { 
        p.Name,
        p.CatalogId,
        p.ManufacturerId,
        c.Name,
        m.Name 
    };
Posted by: Guest on July-11-2021

Code answers related to "linq from multiple tables"

C# Answers by Framework

Browse Popular Code Answers by Language