/* this is the log table in the db */
.LOGTABLE DbName.FastExportLogTable;
/* DBC logon string */
.LOGON teraSrv/userName,SecretPass;
/* always use this before export */
.BEGIN EXPORT;
/* where to export to */
.EXPORT OUTFILE simple.csv;
/*run the actual query */
SELECT TRIM(CAST(ColA AS VARCHAR(1000))) || '|' || TRIM(CAST(ColB AS VARCHAR(1000))) FROM DbName.TableName ;
/* always use this after export */
.END EXPORT;
/* disconnect from the DBS */
.LOGOFF ;
Getting Inherited Controller Routes to work in ASP.NET Core
-
[image: Banner]
By default ASP.NET applies Controller Attribute Routes on concrete types.
If you create a Controller class, the class and its routes are ...
3 weeks ago