Alexander Turtsevich

Results 50 comments of Alexander Turtsevich

@sdanyliv, it's not a limitation, it's simply the way it works in SQL Server and it seems to have exactly the same behavior as other aggregate functions like `AVG`: ```sql...

@sdanyliv, is it possible to fix this via custom `IExtensionCallBuilder` ?

@sdanyliv, `ToValue` works: ```csharp var list2 = await connection .GetTable() .Select(x => x.Departments.Select(z => z.Name).StringAggregate(", ").ToValue()) .ToListAsync(); ```

@sdanyliv, tried custom function: ```csharp new Sql.FunctionAttribute("STRING_AGG", 0, 1) { IsAggregate = true, } public static string StringAgg(this IEnumerable source, string separator) { var stringAgg = string.Join(separator, source); return string.IsNullOrEmpty(stringAgg)...

@happytechca, could you can share full configuration? Which pins did you select as serial? I can flash K1 toolhead but something seems to be wrong, it does not start, pellcorp...

@RicoSuter, yes, field is marked as deprecated in spec but it is not reflected on UI.

1.6.0 and 1.6.1 are just broken, 2.x should contain a fix.

Another use case is fixing compatibility issues with nswag. Actually this is possible through config.js hack: ```js const oldFetch = window.fetch; window.fetch = function (input, init) { return oldFetch(input, init).then((r)...

Does not work with file params: ` [FromForm(Name = "file")] List files`. This class is missing: ```csharp [System.CodeDom.Compiler.GeneratedCode("NSwag", "14.2.0.0 (NJsonSchema v11.1.0.0 (Newtonsoft.Json v13.0.0.0))")] public partial class FileParameter { public FileParameter(System.IO.Stream...

``` this.canvasDatagrid.addEventListener('keydown', (e) => { const event: KeyboardEvent = e.NativeEvent; if (getKeyCode(event) === 8 || getKeyCode(event) === 46) { e.preventDefault(); } }); ```