There is an export users function. What about Import Users? Anyone have implemented it?
Thanks.
6 Answer(s)
-
0
From a third party system or from a data import of some kind?
-
0
I was thinking simple upload file for now.
-
0
The data is in the tables in the DB. What are you tying to do?
-
0
I don't think it will be a challenging work. Read ing an Xlsx file and creating user for each row.
Simply you can check out the code below to create a user.
var user = new User(...); UserManager.Create(user); unitofwork.SaveChanges(); var newUserId = user.id;
-
0
@alper - thanks, I know its easy to do, it was just a feature suggestion for Zero. When you create export, you want to pair with import function.
-
0
<cite>vladsd: </cite> @alper - thanks, I know its easy to do, it was just a feature suggestion for Zero. When you create export, you want to pair with import function.
thanks for it! I'll keep in mind while we discuss about the new features for the new releases.