Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法可以在 c# 中编码以获取 Windows Azure 服务器中的 Sql Azure 数据库列表?
谢谢马丁
要列出服务器上的数据库,您可以查询主数据库中的 sys.databases 表。您可以使用任何您喜欢的数据访问框架来查询此表,例如 Entity Framework (http://msdn.microsoft.com/en-us/library/bb399572.aspx)。
您还可以使用管理 API (http://msdn.microsoft.com/en-us/library/windowsazure/gg715269) 列出订阅下的所有服务器。