Matthew Abbott
Matthew Abbott
My example of where this would be useful would be something like the following: ``` public class BlogPost { // Other properties omitted for brevity... public TagSet Tags { get;...
@divega Hmmm, I hadn't thought of that :-/ very good point on the indexes front. From previous experience I've found the flat list vs many-2-many tables setup to be more...
@divega Out of interest I did some proof of concept work by fiddling with some of the internal API, and I got it working for the materialization point of view....
Updated my Gist, got expressions working but was definately tricky. My `TagSet` implements `ICollection` and the `ICollection.Contains` method is special cased in re-linq as a result operator (unlike `string.Contains`), so...
Thanks @armando-rodriguez-cko I have a work around currently whereby I am using reflection to get access to the underlying `SdkAuthorization` and `ApiClient` instances used by the client. This allows me...