-
Hello I tried to also add the Date format, just in case Here are my types All the code is visible in Github |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The Astro project is still using public class QueryImage : QueryDb<Image>
{
}
public class CreateImage : ICreateDb<Image>, IReturn<Image>
{
public long ArticleId { get; set; }
public string UrlProxy { get; set; }
public bool Published { get; set; }
public bool IsFeatured { get; set; }
public bool Deleted { get; set; }
public long Status { get; set; }
public long Type { get; set; }
public long DisplayOrder { get; set; }
public string Name { get; set; }
} And since the DTO has the required metadata of The reason generated services doesn't show as a checkbox is because SQLite doesn't have a separate boolean type, values are stored as integers which are presented as number fields in the UI. |
Beta Was this translation helpful? Give feedback.
The Astro project is still using
GeneratedServices
, for it to be code first, you would have to declare your AutoQuery DTOs as well as remove the use ofGenerateCrudServices
.And s…