Hi,
Yes, you need.
Hi,
We can share the Ui code to you, please email me. shiwei.liang@volosoft.com
Hi,
You directly add many-to-many navigation properties for your own entitys, but not IdentityUser
, because the IdentityUser
is a pre-built entity.
The best way to pre-build entities to add a many-to-many relationship is to use an middle table.
Example:
public class MyGroup : Entity<Guid>
{
public string Name { get; set; }
public List<UserGroup> Users { get; set; }
}
public class UserGroup : Entity
{
public Guid GroupId { get; set; }
public MyGroup Group { get; set; }
public Guid UserId { get; set; }
public IdentityUser User { get; set; }
public override object[] GetKeys()
{
return new object[] { UserId, GroupId };
}
}
builder.Entity<MyGroup>(b =>
{
b.ConfigureByConvention();
});
builder.Entity<UserGroup>(b =>
{
b.HasKey(x => new { x.UserId, x.GroupId });
b.HasOne(x => x.Group).WithMany(x => x.Users).HasForeignKey(x => x.GroupId);
b.HasOne(x => x.User).WithMany().HasForeignKey(x => x.UserId);
});
Okay,
No problem, please send email to me.
Can you share some screenshots and logs?
Hi,
As I said : https://support.abp.io/QA/Questions/1919#answer-760eb784-bece-e6d0-61f6-39ff469e0c79
This is by BLOB system design, it requires uploading the file stream to the backend.
How can I configure FileManagemente to upload to S3 without having to wait for the entire file to be server-side?
This is no such configure to enable frond-end upload directly, you need to implement it yourself.
Hi,
File management use the BLOB system, this is the BLOB system design,
You can custom the file management module to achieve upload files directly on the front end.
See: https://aws.amazon.com/blogs/compute/uploading-to-amazon-s3-directly-from-a-web-or-mobile-application/
shiwei.liang@volosoft.com
Hi,
The database is tenant-isolated, you must to change current tenant.
Hi,
Can you try to use the dotnet add package Polly --version 7.1.0 --source https://api.nuget.org/v3/index.json
command?