Skip to content

Instantly share code, notes, and snippets.

<template>
<q-page padding>
<q-pdfviewer
v-model="show"
type="pdfjs"
:src="pdfUrl"
content-class="absolute"
/>
2019-02-05 12:37:17.569 CET [4598] LOG: restored log file "00000001000000340000005C" from archive
2019-02-05 12:37:18.307 P00 INFO: archive-get command begin 2.08: [00000001000000340000005D, pg_wal/RECOVERYXLOG] --archive-async --log-level-console=detail --pg1-path=/var/lib/postgresql/11/mtrackdb --process-max=4 --repo1-cipher-typ$2019-02-05 12:37:18.307 P00 INFO: found 00000001000000340000005D in the archive
2019-02-05 12:37:18.307 P00 INFO: archive-get command end: completed successfully (1ms)
2019-02-05 12:37:18.308 CET [4598] LOG: restored log file "00000001000000340000005D" from archive
2019-02-05 12:37:19.017 P00 INFO: archive-get command begin 2.08: [00000001000000340000005E, pg_wal/RECOVERYXLOG] --archive-async --log-level-console=detail --pg1-path=/var/lib/postgresql/11/mtrackdb --process-max=4 --repo1-cipher-typ$2019-02-05 12:37:19.018 P00 INFO: found 00000001000000340000005E in the archive
2019-02-05 12:37:19.018 P00 INFO: archive-get command end: completed successfully (2ms)
2019-02-
System.NullReferenceException: Object reference not set to an instance of an object.
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw
at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Rethrow
at Microsoft.AspNetCore.Mvc.Internal.ControllerActionInvoker.Next
at <InvokeInnerFilterAsync>d__13.MoveNext
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw
at <InvokeNextResourceFilter>d__23.MoveNext
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw
at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Rethrow
at Microsoft.AspNetCore.Mvc.Internal.ResourceInvoker.Next
@mibiio
mibiio / dapper_nodatime_npgsql
Created October 31, 2017 08:18
dapper nodatime npgsql
public class DapperTest
{
public ZonedDateTime DapperTime { get; set;}
}
private void NpgsqlWithDapper()
{
NpgsqlConnection.GlobalTypeMapper.UseNodatime();
SqlMapper.AddTypeHandler(ZonedDateTimeHandler.Default);