more build errors in Core

This commit is contained in:
Nikolaj Geisle
2022-02-27 21:20:50 +01:00
parent e7b31a22be
commit d1cf640f2a
71 changed files with 281 additions and 226 deletions

View File

@@ -15,7 +15,7 @@ namespace Umbraco.Cms.Core.Persistence
/// <summary>
/// Gets entities.
/// </summary>
IEnumerable<TEntity>? GetMany(params TId[]? ids);
IEnumerable<TEntity> GetMany(params TId[]? ids);
/// <summary>
/// Gets a value indicating whether an entity exists.

View File

@@ -16,7 +16,7 @@ namespace Umbraco.Cms.Core.Persistence
/// </summary>
/// <param name="field">The field to alias.</param>
/// <param name="alias">The alias.</param>
public static object Alias(object? field, string alias) => field;
public static object? Alias(object? field, string alias) => field;
/// <summary>
/// Produces Sql text.