Software engineer, Former Microsoft Azure MVP
- Luxembourg
- https://ppolyzos.com
Pinned Loading
-
-
C#: Sort one collection based on ano...
C#: Sort one collection based on another 1/// <summary>
2/// Sort one collection based on keys defined in another
3/// </summary>
4/// <returns>Items sorted</returns>
5public static IEnumerable<TResult> SortBy<TResult, TKey>(
-
TSQL: Generate Random String of desi...
TSQL: Generate Random String of desired length 1DECLARE @DesiredLength AS INT = 10;
2select Lower(substring(replace(newID(), '-', ''), cast(RAND() * (31 - @DesiredLength) AS INT),
3@DesiredLength)) AS randomString;
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.