Springy

Results 10 issues of Springy

I have to store precompressed data and it is important to not waste CPU on compression attempts which enlarge the data. I tried `tbl.Propery(t => t.ByteArray).HasColumnType("bytea storage external")` and `tbl.Propery(t...

enhancement

While there are several overloads of the `Add()` method having `Func callback` parameter, the ones accepting `Func callback` or `Func callback` are just missing - the non-async versions using `Action...

enhancement
good first issue
input needed
needs design

My task is to migrate a large solution (120+ projects) containing a **ASP.NET Core 2.1** host -- which currently is targetting **net472** and references all the other projects in the...

catalog
Suggestion

I get a warning for a check against netstandard2.0. Source of problem is your source of truth, apisofnet: While the [class itself](https://apisof.net/catalog/System.Threading.Tasks.Dataflow.DataflowBlockOptions) is listed for ".NET Standard + Platform Extensions...

catalog

All overloads trigger a "not supported on Linux+OSX" warning. But to my knowledge (which might be wrong) only the usage of named maps is unsupported on Linux. From the source...

blocked

I'm executing `dbContext.Database.GenerateCreateScript()` and saving the result to a file (for git-commit and therefore dev-review of changes). While the file having thousands of lines all using CRLF there are 2...

Whereever you expect `void` or `T` I have `Task` or `Task` in my client or hub interfaces. This works well on server side (using SignalR 2+) but not with your...

### Is there an existing issue for this? - [x] I have searched the existing issues ### Describe the bug Each time you leave the blazor circuit a minute later...

area-blazor
blazor-server
feature-blazor-server-auth

My entity setup has this code: `entityBuilder.Property(AllTextColumnsFullTextComputedColumnName) .IsGeneratedTsVectorColumn(FullTextDictionaryName, FieldsIncludedInFullTextColumn);` where `FieldsIncludedInFullTextColumn` is a string[]. Now I added a new string property to the entity and added the name as the...

Just the same as #697 implemented years ago, but for `KeyBuilder` instead of `IndexBuilder` (see https://www.postgresql.org/docs/current/sql-createtable.html#SQL-CREATETABLE-PARMS-PRIMARY-KEY ) Usage would be: ```cs entityTypeBuilder.HasKey(e => new { e.A, e.B }).IncludeProperties(e => new...

enhancement