Как передать объект типа Parcelable во фрагмент с помощью плагина safeargs типа Navigation

Я не знаю, поможет ли это вам, но ..

NorthwindDataContext dc = new NorthwindDataContext();    
dc.Log = Console.Out;

var query =    
    from c in dc.Customers    
    where !(from o in dc.Orders    
            select o.CustomerID)    
           .Contains(c.CustomerID)    
    select c;

foreach (var c in query) Console.WriteLine( c );

from Предложение NOT IN в LINQ to SQL by Марко Руссо

13
задан Gastón Saillén 6 August 2019 в 13:35
поделиться