Charles Lindsay

Results 19 issues of Charles Lindsay

Question: Could we have the ability to query with .Contains(). var ids= new[] { "ID1", "ID2", "ID3" }; var res = collection.Where(c => ids.Contains(c.Id)).ToList(); Is a query like this even...

Would it be possible to search on a DateTime / DateTimeOffset property? Specifically to do date rage filters? ``` await collection.Where(c => c.Date > dateTime).ToListAsync(); await collection.Where(c => c.Date <...

I get the following error when trying to install the NuGet package into my project. ``` Resolving conflicts for net6.0... Acquiring lock for the installation of Mongo2Go 3.1.3 Acquired lock...

@slorello89 Is it possible to have a fluent call that can enable / disable at invocation time? ```csharp var collection = redisConnectionProvider.RedisCollection(); var itemsWithoutState = await collection.AsStateless().Where(x=>x.IsTrue == true).ToListAsync(); var...

enhancement

Hi @slorello89, I came across another interesting result while testing with Redis-OM. I think I am hitting up against internal structures when trying to do things asynchronously. Here is my...

Hello @slorello89 Looking at the following example: ```csharp [Document(StorageType = StorageType.Json)] public class Customer { [RedisIdField] public Ulid Id { get; set; } [Indexed] public string FirstName { get; set;...

enhancement

Trying this pull request again.

Hi Michael, Awesome library. Any plans to support ContentView's I'd like to be able to resolve ContentView's on demand in my PageModel and get all the MVVM magic FreshMVVM brings...

How do we reset the control after an upload is complete. The image stays in the background.