Cord Schroder
Cord Schroder
So, I had a similar issue and the work around is to add a navigation property on the Tag => Post. ``` var result = db.Posts.Include(post => post.Tags.Where(tag => tag.Id...
I have this exact same issue. If I removed all the encryption methods besides the `[email protected]` and `[email protected]`, then it worked fine. Its almost like whatever code is used to...
@ravi-kamboj try removing all the keys EXCEPT the aes-gcm ones. Something like : ``` var keys = sftpClient.ConnectionInfo.Encryptions.ToList() ?? []; foreach (var encryption in sftpClient.ConnectionInfo.Encryptions.Where(pair => !pair.Key.Contains("gcm"))) { sftpClient.ConnectionInfo.Encryptions.Remove(encryption); }...
> Interesting that they claim it is an issue with WinSCP/PuTTY. Seems to me that their server is not respecting the client algorithm priorities. cc @martinprikryl > > > Is...