DumboJetEngine
DumboJetEngine
Solution: ``` public List FindByUserId(int memberId) { return db.Connection.Query("Select * from MemberLogin where MemberId = @memberId", new { memberId = memberId }) .Select(x => new UserLoginInfo(x.LoginProvider, x.ProviderKey)) .ToList(); } ```...
@fireole Not yet (I have it in my todo list), but I think it would not be hard to add some caching. Here are some links. This seems to be...
@lucashalen Have you tried the code above?
Make sure you use this: ``` ...... new UserLoginInfoEx(x.LoginProvider, x.ProviderKey)) ``` instead of this: ``` ...... new UserLoginInfo(x.LoginProvider, x.ProviderKey)) ```
My bad. This is the correct code: ``` public List FindByUserId(int memberId) { return db.Connection.Query("Select * from MemberLogin where MemberId = @memberId", new {memberId = memberId}) .Select(x => new UserLoginInfo(x.LoginProvider,...
I need this feature too, for a slightly different purpose: I too have Windows and Linux computers that I need to migrate data to/from, but I also have multiple Windows...
@glassez Aha! I did notice those files, but I tried renaming a file in a torrent in the qBitTorrent GUI, then checked the corresponding `.fastresume` file, I saw the file...
Correcting myself on this statement : > I guess a similar feature must already exist in the SQL plugin for OS, since that problem would also be present there and...
And on a second review, using C# expressions does not seem like a good idea (too many limitations). Probably, preprocessing the query before sending it to O.S. would be better....
I have started experimenting on an implementation for this. I am not sure what will be the end result, but it is interesting for me already...