Evengard

Results 78 comments of Evengard

Well, I implemented certificate authentication via PPP-based protocols (L2TP, SSTP) aka EAP-TLS, my next step is to implement IPv6 support for them. I wonder if that wouldn't be enough...

Actually the protocol seems to be not that hard to implement, if I'll have time I'll try to do it. No guarantees yet though.

~~This is another of the issues because I changed the default auth mechanism for PPP stack from PAP to MS-CHAP. I sure can switch it back, but that wouldn't be...

I would love to see that integrated into the main kernel, it would benefit so many systems. Is there any status updates on that?

UPDATE: trying "Task" instead of "ThreadPool" lead me to the same error... Just quicker. As only one thread hung on this instead of multiple ones. It may not be a...

Unfortunately, that: ```csharp MappingSchema.Default.SetConverter(dateTime => { return new DataParameter { Value = DateTime.SpecifyKind(dateTime, DateTimeKind.Utc), DataType = LinqToDB.DataType.DateTime }; }); ``` didn't help at all... I placed a breakpoint in there,...

After further testing the whatever is happening makes to me even less sense. See, importing the SAME project to my repro project and initializing a context manually - works well!...

Actually, I might have an idea as what is going on. See, I'm actually using an EF Core based context for PostgreSql, and a T4 model based MySql one strictly...

Yep, I seem to have a kind of a repro: Repro ```csharp using DataModel; using LinqToDB.Configuration; using LinqToDB.EntityFrameworkCore; using LinqToDB.Mapping; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Logging; using System; using System.ComponentModel.DataAnnotations; using System.Threading.Tasks;...

Actually, no need even for the T4 template, an empty DataConnection subclass works as well: Slimmed-down repro to one file ```csharp using LinqToDB.Configuration; using LinqToDB.EntityFrameworkCore; using LinqToDB.Mapping; using Microsoft.EntityFrameworkCore; using...