StrataFrame Forum

Why is it so?

http://forum.strataframe.net/Topic30665.aspx

By ChanKK - 11/28/2011

Hi
Recently I face problem of newly queried table from SQL server is not "attached" to BO correctly. During the debugging, I found the below codes. May I know what is the reason of coding so?



  ''' </summary>
        Private Property _CurrentDataTable() As DataTable
            Get
                Return Me._CurrentDataTable(False)
            End Get
            Set(ByVal value As DataTable)
                Me._CurrentDataTable(True) = value
            End Set
        End Property

Why we have Me._CurrentDataTable(False) when return the datatable but Me._CurrentDataTable(True) when assign the dataTable?

Please advice. Thank you