C# (CSharp) TelerikAcademy.Client Namespace

Classes

Name Description
ClientUI
DeleteComparer 3. Compare Bulk Delete with normal delete operation Insert 100 000 entities in single table. Delete each row that has ID where ID mod 7 == 1 Once delete the entities using OpenAccessContext.Remove() method. Then delete the entities using DeleteAll() bulk operation. Both times track the SQL statements that are sent to the server. Both times measure the time required to complete the operation(s). For bonus points measure the memory consumption in addition to the time. Output the measurements in text file including timestamp and machine name
Serializator 2. Implement entity cloning using binary serialization Define a function that can clone single entity loaded from the database (for more fame – a graph of entities, starting with from one of the nodes). Test that all properties of the original instance have the same values as the ones on the cloned.