I am trying to figure out how I would create a composite KEY with the geode native client APIs. Does someone have a simple example of how I would do this in .NET? For example, say my data class is:
MyDataObject
string field1;
string field2;
string field3;
I want a composite key on field1
and field2
. What would this look like in C# .NET?