Horje
.netstandard distinctby iqueryable Code Example
.netstandard distinctby iqueryable
public static IQueryable<TSource> DistinctBy<TSource, TKey>(
	this IQueryable<TSource> source,
    Expression<Func<TSource, TKey>> keySelector)
    {
    	return source.GroupBy(keySelector).Select(grouping => grouping.FirstOrDefault());
	}




Csharp

Related
Winform on exit run method Code Example Winform on exit run method Code Example
c# directory entry invoke Code Example c# directory entry invoke Code Example
unity prefab button not working Code Example unity prefab button not working Code Example
c# guid from string Code Example c# guid from string Code Example
unity run all interfaces Code Example unity run all interfaces Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8