Robert Perry

Results 15 comments of Robert Perry

> it's slower websocket [TCP Test.zip](https://github.com/chronoxor/NetCoreServer/files/3999394/TCP.Test.zip) ZIP files are totally useless.. Please post code instead

I can revisit this project and give it an update for sure - good suggestion!

Hello, It’s my understanding that interfaces define contracts and are implemented by classes. The attributes applied to an interface wouldn’t be inherited or transferred in any way to the class....

*Bump* .. I have the same requirement for this

I'm using JQuery, and i've been able to solve this using the JQuery caching feature. ``` const ps = new PerfectScrollbar(elementName, { wheelSpeed: 0.2, swipeEasing: true, wheelPropagation: propagateScrolling, minScrollbarLength: 20,...

Any news on this? I prefer the Http01 challenges rather than the DNS ones

I've had a go at this. I've managed to get it working with relatively minor changes. It involves replacing the QueryFilter lambda on the Entity with a custom dictionary of...

If anyone is interested in helping me with this; its this method in particular that is causing my issue. ``` private Func GetOrAddQueryCore( object cacheKey, Func compiler) { Func compiledQuery;...

Correct, its part of my changes to code base: In the EntityType.cs i've added the following code: ``` /// Dictionary IMutableEntityType.QueryFilterCollection => this.QueryFilterCollection; private Dictionary _queryFilterCollection; /// /// Gets or...

Ok, so the filters would be applied during model generation in the DbContext as normal. ``` protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity( entity => { entity.ToTable("Account"); entity.Property(e => e.IsActive).HasColumnName("isActive");...