Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
In Designer Define a Schema for nested objects
posted

I'd like to link a nested class as datasource in the Manual Define a Schema functionality.

My class structure is: 

Public class Control
 Public Property Key() As String
 End Property
 Public Property Name() As String
 End Property
 Public Property Translation() As CTranslation
 End Property
end class

Public class Translation
 Public Property Code() As String
 End Property
 Public Property Languages() As List (of Language)
 End Property
 Public Property TranslationId() As Integer
 End Property
end class

 Public class Language
  Public Property ControlToolTip() As String
  End Property
  Public Property LanguageId() As Integer
  End Property
 Public Property Text() As String
 End Property
end class

 I'd like the grid to look like:

Databand             Columns
Control                  -key -Name -Code -TranslationId
   -Clanguage       -ControlToolTip -LanguageId -Text

 

Is this possible? If not how to do this by code?

Thnx in Advance!

Parents Reply Children
No Data