Postgresql Not Creating TypedList or TypedViews

Posts   
 
    
hankddog
User
Posts: 52
Joined: 08-Apr-2005
# Posted on: 11-May-2018 18:03:33   

I have LLBLGen connected to a postgresql DB. Entities are created fine. But when I create a TypedList or TypedView. All it gives me in the TypedListClasses and TypedViewClasses folder is the row file.

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39588
Joined: 17-Aug-2003
# Posted on: 12-May-2018 09:03:31   

What ORM Framework are you using? If it's our framework, under Project settings -> LLBLGen Pro Runtime Framework, the value for TypedListOutputTypeDefault and TypedViewOutputTypeDefault are set to PocoWithQuerySpecQuery or PocoWithLinqQuery, most likely. The typed lists / views are generated as poco classes plus an additional query which fetches them, which is more efficient than the datatable based typedlist/views of older versions.

See: https://www.llblgen.com/Documentation/5.4/LLBLGen%20Pro%20RTF/Using%20the%20generated%20code/Adapter/Using%20TypedViews,%20TypedLists%20and%20Dynamic%20Lists/gencode_usingtypedlist_adapter.htm#instantiating-and-using-a-typedlist for how to fetch them using the various output types.

Frans Bouma | Lead developer LLBLGen Pro
hankddog
User
Posts: 52
Joined: 08-Apr-2005
# Posted on: 14-May-2018 21:03:44   

That did the trick for MySQL and PostgreSQL. Thanks!