Hi,
I think localhost and "(localDb)\MSSQLLocalDb" is not same. Can you try to use "(localDb)\MSSQLLocalDb" instead of localhost in your connectionString ?
Hi,
Can you try it like this ?
[StringLength(100)]
public override string UserName { get; set; }
Hi,
We started to get this request, adding additional layers beteween tenant and host, so often lately :). Actually it's in our long term plan but we dont have an estimated date for that yet. We also think that it is a great feature.
Hi,
Currently this is a really hard thing to do. The best way we can offer is, include current version of ABP framework into your project and made changes locally. Of course, if you do this, you will not be able to update your ABP framework.
We have plans to do it in the future but it's not in short time plan.
Hi,
Thank you for sharing your idea in details. There is a UserAccount entity in module zero and it's stored in the host database. <a class="postlink" href="https://github.com/aspnetboilerplate/module-zero/blob/09cb578f09ee0318b479aa31dd0ceff56a5d218d/src/Abp.Zero/Authorization/Users/UserAccount.cs">https://github.com/aspnetboilerplate/mo ... Account.cs</a>
All the users in all databases (even if you use db per tenant) has a single record in this table. (AbpUserAccounts). And UserAccountSynchronizer class keeps this table up to date. <a class="postlink" href="https://github.com/aspnetboilerplate/module-zero/blob/09cb578f09ee0318b479aa31dd0ceff56a5d218d/src/Abp.Zero/Authorization/Users/UserAccountSynchronizer.cs">https://github.com/aspnetboilerplate/mo ... ronizer.cs</a>
Maybe you can extend this class according to your needs (add password and other fields to authanticate a user), and use this entity to authenticate users.
We will be very happy to hear your progress.
Hi,
I dont have much experience in Oracle but this might be the solution of your problem. <a class="postlink" href="http://stackoverflow.com/questions/35403610/table-does-not-exist-while-using-ef-6-and-oracle-manageddataaccess">http://stackoverflow.com/questions/3540 ... dataaccess</a>.
Hi,
This is possible but , there is not an easy way of doing this. I know this is not good but, you need to add Abp.Zero's source code to your project and modify necessary places in order to do it.
If you decide to do it, you can ask for help on the way.
Hi,
You can delete the content of nuget packages folder (except packges.config) and bin and obj folders. Is that still big when you delete those files ?
Hi,
You can take a look at this demo <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate-samples/tree/master/PlugInDemo">https://github.com/aspnetboilerplate/as ... PlugInDemo</a>. If this is not you are loooking for, please write back.
Hi,
I have found your problem. Constructor of ListValuesRepository must be public not protected in order to inject it with dependency injection.