combit List & Label 29 - .NET Help
combit.Reporting Namespace / LlCore Class / LlDbAddTable Method
Example


In This Topic
    LlDbAddTable Method
    In This Topic
    This function adds a table that can then be used in the Designer.
    Overload List
    OverloadDescription

    This method can be used to define a database table.

     

    This method can be used to define a database table and supports additional options.

     
    Example
    // Pass the tables
    LL.Core.LlDbAddTable("Orders");
    LL.Core.LlDbAddTable("OrderDetails");
    LL.Core.LlDbAddTableRelation("OrderDetails", "Orders", "Orders2OrderDetails");
    LL.Core.LlDbSetMasterTable("Orders"); 
    
    // Localization
    LL.Dictionary.Tables.Add("Orders", "Bestellungen")
    LL.Dictionary.Tables.Add("OrderDetails", "Bestellposten")
    Requirements

    Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
    .NET: .NET Framework 4.8, .NET 6, .NET 7, .NET 8

    See Also