-
Re: Code Works in LINQPad 5 But Fails in LINQPad6
I don't know why serilog requires that file. I guess I could get LINQPad to create a dummy file automatically for the sake of serilog. In the meantime, you could create a similar file yourself:{ &quo…1 · -
Re: System.Data.SqlClient types not found in LP6
I see what's happening: the CLR resolves type-forwarded assemblies via the ALC of the forwarding type rather than the requesting type (or the contextual reflection context). This makes sense if the d…1 · -
Re: How lprun output append at the end of exist log file and limit file size?
Windows supports the >> operator to append instead of replacing: lprun -format=text "test.linq" >> output.log There's no option to limit file size AFAIK.1 · -
Re: AzureStorageDriver
You might get more success posting on the driver's issues page: https://github.com/madd0/AzureStorageDriver/issues1 · -
Re: EF.Functions.Like throws "has no supported translation to SQL" error
If the source is SD.Tools.LinqToSQL, you are using a LINQ-to-SQL connection, not an EF Core connection. You should use SqlMethods.Like instead of EF.Functions.Like.1 ·