.NET 6: модели хранимых процедур и контекст
Кто-нибудь знает, как создать модель и контекст для хранимой процедуры SQL Server в минимальном API .NET 6?
я попробовал это с
HasNoKey
в Fluent API, но не получилось построить контроллер EF...
Проблема в том, что модель, которую я использую для возврата некоторых нулевых значений, которые не принимает Flutter Snapshot, поэтому мне нужна другая модель?
public partial class Establishment
{
public Establishment()
{
AssociationsEts = new HashSet<AssociationsEt>();
Prices = new HashSet<Price>();
}
public int EstablishmentId { get; set; }
public string EstablishmentName { get; set; } = null!;
public int AddressId { get; set; }
public int? DocumentationId { get; set; }
public virtual Address Address { get; set; } = null!;
public virtual Documentation? Documentation { get; set; }
public virtual ICollection<AssociationsEt> AssociationsEts { get; set; }
public virtual ICollection<Price> Prices { get; set; }
}