我想构建一个使用c#访问(读/写)magento数据库的应用程序.我想知道有没有办法从自定义应用程序连接?如果是,哪个会是最好的?请建议我,因为我是Magento的新手,谢谢. 最佳答案 您可以使用magento API执行此操作,下面的代码可能会对您有所帮助;
using Magento_Import.MagentoAPI;
namespace Magento_Import
{
public partial class _Default : System.Web.UI.Page
{
Mage_Api_Model_Server_V2_HandlerPortTypeClient handler = new Mage_Api_Model_Server_V2_HandlerPortTypeClient();
protected void Page_Load(object sender, EventArgs e)
{
string session = handler.login("username", "password");
catalogProductEntity[] products;
handler.catalogProductList(out products, session, null, null);
}
}
}