We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83b5bca commit f41eb8dCopy full SHA for f41eb8d
modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/QueryDmlExample.cs
@@ -60,6 +60,9 @@ public static void Main()
60
var organizationCache = ignite.GetOrCreateCache<int, Organization>(new CacheConfiguration(
61
OrganizationCacheName, new QueryEntity(typeof(int), typeof(Organization))));
62
63
+ employeeCache.Clear();
64
+ organizationCache.Clear();
65
+
66
Insert(organizationCache, employeeCache);
67
Select(employeeCache, "Inserted data");
68
0 commit comments