Ryan Crosby

Results 66 comments of Ryan Crosby

An overload can probably do it, it'll just have to be clearly documented in the method XML docstring. I can't see an elegant way to specify `@@session.time_zone` as the parameter...

I'm going to begin some work on this soon and try to get a prototype running, should I branch off `master`? Ideally I'd like this to be backported into the...

Being able to set the connection timezone to UTC 0 is essentially required for correct operation of the `CURRENT_TIMESTAMP` function with `datetime` columns and `DateTimeOffset` entity types, since by default...

As an aside, you can fix this without a `DbCommandInterceptor` if you're stuck on 2.1 by using the `Database.GetDbConnection().StateChange` event: ``` public ApplicationDbContext(DbContextOptions options) : base(options) { Database.GetDbConnection().StateChange += Connection_StateChange;...

I'm trying to add an index on the lowercase of a text column, so that if I need to do case insensitive lookup on the column (which is not always),...

Yeah, it needs https://unpkg.com/@zxing/[email protected]/umd/index.min.js instead.

> > > this should do it Now the trick is getting it merged....

This would be especially useful since `maps.google.com` has change to `google.com/maps`, and it looks like Google is moving more and more services back into their root domain. This means if...

> With respect to lines versus shapes, see [OEP7: Mixed Dimension Geometry Support](https://github.com/openscad/openscad/wiki/OEP7%3A-Mixed-Dimension-Geometry-Support). Does this cover OpenSCAD being able to export smooth curves vs a set of straight lines? Currently...

My use case is getting Refit into industrial .NET applications which are often targeted towards low power ARM SoCs, usually single core and around 1GHz in speed. .NET is surprisingly...