Does it support for navigation property abp suite? but I could not do it either.
like:
public class Employee { #region Properties
public int EmployeeID { get; set; } public string FirstName { get; set; } public string LastName { get; set; }
public int? ManagerID { get; set; } public Employee Manager { get; set; }
#endregion }
I added AbpAuditingOptions to xxxWebModule as in the document.
like this:
Configure<AbpAuditingOptions>(options => { options.EntityHistorySelectors.AddAllEntities(); });
I updated the Entity. Why are there only 'Create' change logs. Why 'Update' and 'Delete' change logs do not exist in entity change ?
Hi, i want to implementation to my abp application. my guide : https://docs.devexpress.com/XtraReports/401762/web-reporting/asp-net-core-reporting/document-viewer/quick-start/add-the-document-viewer-to-an-aspnet-core-application
How can I do this implementation in my abp application? I would be glad if you help. @cotur
Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.
Chat Module document is not very self explanatory for me. I studied the examples. but the examples are in the old version. 2.8.x I wish you could make a video about adding the chat module to an abp mvc project and working. step by step. thanks
How can I deploy public site and application to Azure? I could not find the document.