mguinness

Results 151 comments of mguinness

> Unfortunately, implementing a decent full text search is not trivial. Full text indexes are available on most RDBMS including MySQL, PostgreSQL and SQL Server. To create an index (on...

It appears that [FileContextTransactionManager](https://github.com/morrisjdev/FileContextCore/blob/master/FileContextCore/Storage/Internal/FileContextTransactionManager.cs) class is missing `CommitTransactionAsync` method, so is it possible to just add the following? Of course there may be additional changes to upgrade the provider to...

Looking into this further there is a lot of work required to update the library. There is an open issue [Improve documentation on how to write an EF Core provider](https://github.com/dotnet/EntityFramework.Docs/issues/681)...

If it's the case that this library doesn't play well with Global Query Filters, it it possible to determine when filters have been defined for the query to skip the...

@jedielson Keep the form in modal-body and the button outside in modal-footer. Then you can either use the new [HTML5 form attribute](https://www.w3schools.com/tags/att_button_form.asp) or just add the following to your button...

Upvote from me, even just the ordinal position would be very helpful when tracking down issues.

If I need the opposite of `IsInInput` is there a way to do that other than creating a new expression like below? ```C# case "NotInInput": return Expression.Not(Expression.Call(Expression.Constant(rule.Inputs.ToList()), _miListContains.Value, propExpression)); ```...

@jamescurran Do you think that this can be merged, do you need anything else from me?

@jamescurran Any update on if this change to support the [JSON configuration provider](https://docs.microsoft.com/en-us/dotnet/core/extensions/configuration-providers#json-configuration-provider) can be merged?

I think this can be achieved by modifying `CreatePackage.bat` to below. I have an ASP.NET Core project that I'd like to include this in and I think there would be...