With .NET classic I used to have a connectionstring like this (to connect to db2 instance) :
DataSource=10.10.1.1;UserID=MyUser;Password=MyPWD;LibraryList=LIB1,*USRLIBL;Naming=System;
But this connectionstring doesn't work anymore with .NET CORE.
I've found something like :
server=10.10.1.1:446;database=TheDB;user id=MyUser;password=MyPWD;
But I don't find anything for LibraryList. What is the equivalent ?