Ivan Sanz Carasa
Ivan Sanz Carasa
Hi, what is this about?
I guess WASM cannot call GRPC services directly nowadays. Maybe the API project could be replaced with a generic transparent proxy from HTTP to grpc.
ToEnumModel must be an expression, for example: public static Expression ToEnumModel() { return x => new EnumModel { CFPId = x.CFPId, CreatedAt = x.CreatedAt, ModifiedAt = x.ModifiedAt, }; } and...
The only place where comparers are being used currently is for `orderBy`, maybe it's a good idea to introduce a `StrictEqualityComparer` that simply does `===` and start using it here...
yep, but in the end, having special comparer for those cases is user's responsibility. I think the best we can do is use `===` as default (every other method in...
Hi, can you create a dummy repo where I can reproduce the issue? Thanks
Hi, the library uses [**comparers**](https://github.com/isc30/linq-collections/blob/master/src/Comparers.ts) for this. You can let the library use the ones provided by me (tested with all native JS types) or provide your own. There are...
Yep, I have been thinking about this for a long time. My conclusions were: * I would like to use [Symbol.Iterator] and generator functions in the library * Those are...
working on this (part of v2 refactor)