Replaced data annotation with Fluent API configuration for BodyQueryResult.RawBody column mapping in RecDbContext, centralizing entity configuration and removing the [Column("REQUEST_BODY")] attribute from the entity class.
6 lines
109 B
C#
6 lines
109 B
C#
namespace ReC.Domain.Entities;
|
|
|
|
public class BodyQueryResult
|
|
{
|
|
public string? RawBody { get; init; }
|
|
} |