我在 C# 中有一些实体框架 REST 服务,它们从 SQL 服务器获取数据。这些服务将托管在 Azure 上。
无法为远程连接打开数据库,我不希望每个查询都通过服务总线中继,而且我无法在 Azure 中托管数据库。
有没有办法只让与 DB 的连接通过服务总线,然后将实体加载到 Azure 上的内存中,然后查询可以与之相反?
我正在尝试以下方面的内容:
public class ATPublicRestContext : DbContext
{
public ATPublicRestContext() : base("name=WEBEntities")
{
//do something here to call the dbcontext through a service bus?
//Is that even possible
//or somehow get base("name-WEBEntities") to call the service bus
//binding instead of the connection string to the DB?
}
}
相关分类