<cite>ismcagdas: </cite> Hi,
We will implement it next week for this issue <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/issues/91">https://github.com/aspnetzero/aspnet-ze ... /issues/91</a>. You can wait for it of you can upgrade to jtable 2.5 and change your action field definitions according to this issue <a class="postlink" href="https://github.com/hikalkan/jtable/pull/2038">https://github.com/hikalkan/jtable/pull/2038</a>.
Can you share the error message for Tenant Crud problem ?
Thanks.
Your latest version released for this issue.
<cite>ismcagdas: </cite> Hi,
You need to add this package to your project <a class="postlink" href="https://www.nuget.org/packages/MySql.Data.Entity/">https://www.nuget.org/packages/MySql.Data.Entity/</a>. It's explained in the document.
I think you already have MySql installed, right ? If you haven't install MySql Connecter, you can install it here <a class="postlink" href="https://dev.mysql.com/downloads/connector/net/">https://dev.mysql.com/downloads/connector/net/</a> but this is not related to AspNet Zero, it is required for any other Entity Framework project.
Thanks.
We are using Asp. Net core 1.x and angular 2.x solution.
I think MySql.Data.Entity not supported for Asp.net Core. MySql Connecter is not available for Visual Studio 2017.
Please provide the proper solution for Mysql connectivity with Asp. Net core 1.x and angular 2.x .
Please consider as Urgent.
<cite>ismcagdas: </cite> This document contains step by step instructions <a class="postlink" href="https://aspnetboilerplate.com/Pages/Documents/EF-MySql-Integration">https://aspnetboilerplate.com/Pages/Doc ... ntegration</a>. Did you try it ? Do you get an error ?
Which package is required for mysql integration with Asp. Net core 1.x and angular 2.x.
Where can i add drivers
Please provide us Mysql Integration With Asp.Net Core step by step details.
<cite>ismcagdas: </cite> Hi,
You can use this document <a class="postlink" href="https://aspnetboilerplate.com/Pages/Documents/EF-MySql-Integration">https://aspnetboilerplate.com/Pages/Doc ... ntegration</a>. It is for ASP.NET MVC 5.x but you just need to use
dotnet ef migrations add "AbpZero_Initial"
instead of
Add-Migration "AbpZero_Initial"
Open your command prompt, navigate to *.EntityFramework solution's root directory and run this command
dotnet ef migrations add "AbpZero_Initial"
in command prompt .
Thanks.
I am not able to connect Mysql server. How to use Mysql server connection.
Is it Correct? I can't understand. How it assign as default tanant? Please explain...
public class Tenant : AbpTenant<User> { //Can add application specific tenant properties here
public new const string DefaultTenantName = "NewDefaultTenantName";
protected Tenant() {
}
public Tenant(string tenancyName, string name) : base(tenancyName, name) {
} }
<cite>ismcagdas: </cite> Hi,
It is Tenant.cs file in MultiTenancy folder of your *.Core project.
This is Tenant file. Where to add in this?
public class Tenant : AbpTenant<User> { //Can add application specific tenant properties here
protected Tenant()
{
}
public Tenant(string tenancyName, string name)
: base(tenancyName, name)
{
}
}
<cite>ismcagdas: </cite> Hi,
Do you use Visual Studio 2017 ? Otherwise you cannot open it.
I am using Visual Studio 2015. Then what to do.
<cite>ismcagdas: </cite> Hi,
You can change it in CreateDefaultTenant method of DefaultTenantBuilder class. But this only changes it for migration and probably, you will have some other problems.
Instead of that, please add below constant to Tenant class.
public new const string DefaultTenantName = "NewDefaultTenantName";
Please confirm the file Name.
<cite>ismcagdas: </cite> Hi @velu,
In which page is this happening, is it an AspNet Zero page or a page developed by you ? I'm asking to test it.
And, how many records do you have in that dropdown ?
Thanks.
In AspNet Zero pages wherever dropdown is available and my page also.