Files
ReC/src/ReC.Domain/QueryOutput/InsertObjectResult.cs
TekH e8fa149532 Move InsertObjectResult mapping to Fluent API
Removed [Column] attribute from InsertObjectResult and configured column mapping for NewObjectId in RecDbContext using the Fluent API. This centralizes entity mapping logic in the DbContext.
2026-01-12 14:20:41 +01:00

9 lines
178 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace ReC.Domain.QueryOutput;
public class InsertObjectResult
{
public required long NewObjectId { get; set; }
}