EntityFrameworkCore.IndexAttribute icon indicating copy to clipboard operation
EntityFrameworkCore.IndexAttribute copied to clipboard

Revival of [Index] attribute for EF Core. (with extension for model building.)

Results 6 EntityFrameworkCore.IndexAttribute issues
Sort by recently updated
recently updated
newest added

In EF6, when creating a composite index by using multiple [Index] attributes, you only were required to specify the IsUnique and IsClustered options on one of the attributes. Currently with...

Hi, We get an issue when we use "table per hierarchy" with this library on the PrimaryKeyAttribute. The model is invalid as it is adding the Key attribute to the...

Exception while EF Core updated to 6.0 preview "missing method: ITypeBase.get_ClrType"

Is it possible to add another property of the Index attribute to specify the index sort order for each column (ASC / DESC)?

Can you add support for Composite PK? E.g. [PrimaryKey("PK_AtoB", 0, IsClustered = true)] public long Id1 { get; set; } [PrimaryKey("PK_AtoB", 1, IsClustered = false)] public long Id2 { get;...

If support other database? For example:MySQL, DM(达梦) ..