EfCore.Shaman
EfCore.Shaman copied to clipboard
Fix some EntityFrameworkCore flaws.
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
var colsDic = entity .Properites .Where(info => !info.IsNotMapped && !info.IsNavigationProperty) .ToDictionary(a => a.ColumnName, StringComparer.OrdinalIgnoreCase); FixMigrationUp throws an Argument Exception "An item with the same key has already been added." in...
.NET Core 2.0 with **EFCore 2.0** was just released 2 days ago. I am now trying to switch app from 1.1 to 2.0. I have created .NetCore2.0 app WebAPI that...
With FluenApi syntax is: `modelBuilder.Entity().HasIndex(a => a.Email).IsUnique().HasFilter("[Deleted] = 0");` Now this can be new attribute `[FilteredIndexAttribute(condition)]` where condition is String type. Or to extend [IndexAttribute] and/or [UniqueIndexAttribute] with another constructor....
In EF core default behavior for FK is that it automatically generates **Index** for it and set _DeleteBehavior_ to **Cascade**. Both are practical but sometime you want to change it,...
We are friendly over there 😄
FullText Search is another sometimes often used feature so it would be useful to have `[FullTextIndexAttribute]` for it as well. At the moment I am setting it manually in migration...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...