Vincent Wang

Results 13 comments of Vincent Wang

If you installed Clink using the .exe installer. Put the lua files into the directory: ``` %localappdata%\clink ``` If you are using the .zip distribution of Clink . Put the...

People who use [chrisant996 's version of clink](https://github.com/chrisant996/clink) can also use the command `clink info` the see the scripts location ![image](https://user-images.githubusercontent.com/18399096/154606989-338ed732-020b-4044-b5a9-3e58d7bb9781.png)

https://github.com/DapperLib/Dapper.Contrib/issues/4#issuecomment-886451686

``` { "version": "2.0.0", "tasks": [ { "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/test.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary;Encoding=UTF-8" ], "problemMatcher": "$msCompile" }, { "label": "publish", "command": "dotnet", "type": "process",...

this is an old issue for dapper.contrib, it's a breaking change so dapper.contrib won't merge the pr: the work around is to insert a list with one item instead of...

@mikesigs use dapper only, write the sql yourself. For sqlserver it's something like this: `insert into ... output inserted.ID values ... ` , then you can assign the id yourself....

see this sample for autofac async interceptor with the help of AsyncDeterminationInterceptor and AsyncInterceptorBase: 1. create an adapter ```csharp public class AsyncInterceptorAdaper : AsyncDeterminationInterceptor where TAsyncInterceptor : IAsyncInterceptor { public...

> > ```cs > > CallLoggerAsyncInterceptor > > ``` > > how to asyncinterceptor for class ? here is the demo code: https://github.com/wswind/Learn-AOP/blob/master/AutofacAsyncInterceptor/CallLoggerAsyncInterceptor.cs

I've met the same issue on archlinux after changing the timeout to 30 seconds. If the timeout is too short , genie will not display the failed systemd services and...