Boris Djurdjevic

Results 15 issues of Boris Djurdjevic

How can custom button be added in header in line with CRUD buttons? At the moment I have custom button above the grid but it is more useful and also...

**Is your feature request related to a problem? Please describe.** Not sure if this request is a question and is already configurable or would be new feature. If it can...

How could Dropdown field in a Form be configured for remote lookup. Is there somewhere example with this usage? If there would be dozens of thousand of Companies, to load...

On page [Data_annotations](https://github.com/gustavnavar/Grid.Blazor/blob/master/docs/blazor_server/Data_annotations.md) segment _1. Create a razor page_ Instead of `protected override async Task OnInitAsync()` should be `protected override async Task OnInitializedAsync()` Also header should contain _@using Microsoft.Extensions.Primitives @using...

Using info from [Data_annotations](https://github.com/gustavnavar/Grid.Blazor/blob/master/docs/blazor_server/Data_annotations.md) I have tried to make Foo panel work but after click on menu 'Foo sample' we get an exception: > System.NullReferenceException: 'Object reference not set to...

For SqlServer Sequential Guid creation I have: ```C# public static class SeqGuid { private static ICombProvider SqlNoRepeatCombs = new SqlCombProvider(new UnixDateTimeStrategy(), new UtcNoRepeatTimestampProvider().GetTimestamp); public static Guid Create() { return SqlNoRepeatCombs.Create();...

enhancement

.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,...

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...