Have you looked into the implementation of LINQ methods and do you understand how they work?
C#
Have you worked with IdentityServer?
// case 2 // implement extension chunkwhile: // - combines neighboring elements into groups while samegroup(prev, current) == true. var data = new[] { 1, 3, 5, 2, 4, 4, 7 }; var chunks = data.chunkwhile((prev, curr) => (prev % 2) == (curr % 2)); foreach (var chunk in chunks) { console.writeline($"[{string.join(", ", chunk)}]"); } public static class case2class { public static ienumerable<ireadonlylist<t>> chunkwhile<t>( this ienumerable<t> source, func<t, t, bool> samegroup) { throw new notimplementedexception(); } }
What does yield return mean?
What subjects in training did you find more difficult?
Is the Keycloak login form provided by Keycloak itself?
What is IEnumerable?
What is the difference between IEnumerable and IQueryable?
Briefly tell about your experience.
How is the yield mechanism implemented internally?
Using LINQ, calculate the flat statistics of products and modifiers in a nested cart model: name and total quantity. Consider the Quantity of cart items and modifiers.
Tell about one of the recent interesting or complex tasks.
How does service integration with a running Keycloak look like in C#?