Main Source

Name in Migrated Code: From
Location in Migrated Class: InitializeDataView

Dataview Magic-Table

Example:

internal readonly Models.Customers Customers = new Models.Customers { AllowRowLocking = true }; 
   public ShowCustomers()
        {
            Title = "Show Customers";
            InitializeDataView();
        }
        void InitializeDataView()
        {
            From = Customers;
            OrderBy = Customers.SortByPK_Customers;
        } 
  1. The Main source - From = Customers;
  2. The Source index - OrderBy = Customers.SortByPK_Customers;
  3. Access source property - AllowRowLocking = true;

See Also:



Help us improve, Edit this page on GitHub
or email us at info@fireflymigration.com