Orleans.Indexing icon indicating copy to clipboard operation
Orleans.Indexing copied to clipboard

Multi Level Properties

Open alfkonee opened this issue 6 years ago • 1 comments

Hello there Please I'd like to ask if the Indexing works for MultiLevel Child Properties say

class CLS1{
 int Prop1{get;set}
 CLS2 Child{get;set}
}
class CLS2{
 [ActiveIndex]
 string data{get;set}
}

will this work if I use the CLS1 Class as a State for the IndexableGrain??

@sergeybykov

alfkonee avatar Oct 28 '19 18:10 alfkonee

No, we would only look for index attributes on properties of the specified Properties class.

TedHartMS avatar Nov 05 '19 21:11 TedHartMS