Thom Kiesewetter
Thom Kiesewetter
I didn't not use it anymore. Probably I rewrite some linq queries
@RicoSuter There is nullable information. But not on the returntype but on the methode return parameter. If you add this line ```c# var isNullable = new NullabilityInfoContext().Create(context.MethodInfo!.ReturnParameter).ReadState == NullabilityState.Nullable; ```...
The ArrowIcon is set in the clickhandler of matSortHeader. Is see only two ugly hacks. add a stylesheet entry ``` ::ng-deep .mat-sort-header-sorted .mat-sort-header-arrow { opacity: 1 !important; } ``` or...
@adgoncal In some messages the problem seems to be solved or suggests other solutions that do not work. I spent to much time on this problem by trying some of...
Events can be user as workaround. ``` typescript (this.pdf.internal as any).events.subscribe('preProcessText', (x: payLoad) => { const textBlockHeight = (this.pdf.getLineHeight() * x.text.length); this.yNext = x.y + textBlockHeight; console.log(x.text, x.y, x.options, x.mutex);...
When will this fix be available for net core 9.0
Tested today with 9_rc1. Still the same issue ``` Cannot get _selectExpression IQueryableExtensions.ToParametrizedSql(IQueryable query) BatchUtil.GetBatchSql(IQueryable query, DbContext context, Boolean isUpdate) SqlQueryBuilder.MergeTable[T](DbContext context, TableInfo tableInfo, OperationType operationType, IEnumerable`1 entityPropertyWithDefaultValue) SqlServerAdapter.MergeAsync[T](DbContext context,...
If I decompile the 9.0.1 version than I still missing the fix public static (string, IEnumerable) ToParametrizedSql(this IQueryable query) { string relationalQueryContextText = "_relationalQueryContext"; string relationalCommandCacheText = "_relationalCommandCache"; _**string relationalCommandResolverText...
The orginal sql was ``` sql MERGE [dbo].[Locations] WITH (HOLDLOCK) AS T USING (SELECT TOP 1 * FROM [dbo].[LocationsTemp754bacbd] ORDER BY [ExternalId]) AS S ON T.[ExternalId] = S.[ExternalId] WHEN NOT...