Table ASP.NET 核心中的存储与 DBContext

Table Storage vs DBContext in ASP.NET Core

为了连接到 ASP.NET 核心应用程序中的数据库,我们创建了一个 DbContext

namespace MyProject.Models
{
    public class MyProjectContext : DbContext
    {
        public MyProjectContext (DbContextOptions<MyProjectContext> options)
            : base(options){ }

        public DbSet<MyProject.Models.Record> Record { get; set; }
    }
}

在 Startup.cs 我们做

public void ConfigureServices(IServiceCollection services) {
    // Adds services required for using options.
    //...
    // Add framework services.
    services.AddMvc();

    services.AddDbContext<MyProjectContext>(options =>
            options.UseSqlServer(Configuration.GetConnectionString("MyProjectContext")));
}

最后在控制器中我们有

namespace MyProject.Controllers
{
    public class RecordsController : Controller
    {
        private readonly MyProjectContext _context;

        public RecordsController(MyProjectContext context) {
            _context = context;    
        } 

        // GET: Records
        public async Task<IActionResult> Index() {
            return View(await _context.Record.ToListAsync());
        }

好了,VS 脚手架的就这些了...

============================================= ================

我现在要处理 AzureTables,所以我做了一个测试控制器

Startup.cs

    public void ConfigureServices(IServiceCollection services) {
        // Adds services required for using options.
        ...
        // Register the IConfiguration instance which "ConnectionStrings" binds against.
        services.Configure<AppSecrets>(Configuration);

HelloWorldController.cs

namespace MyProject.Controllers
{
    public class HelloWorldController : Controller
    {        
        CloudTableClient cloudTableClient = null;

        public HelloWorldController(IOptions<AppSecrets> optionsAccessor) {
            string azureConnectionString = optionsAccessor.Value.MyProjectTablesConnectionString;
            CloudStorageAccount cloudStorageAccount = CloudStorageAccount.Parse(azureConnectionString);
            cloudTableClient = cloudStorageAccount.CreateCloudTableClient();
        }    

        public async Task<string> ReadTables() {
            CloudTable table = cloudTableClient.GetTableReference("themes");

            StringBuilder response = new StringBuilder("Here is your test Table:");
            var query = new TableQuery<DescriptionEntity>() {
                SelectColumns = new List<string> { "RowKey", "Description" }
            };
            var items = await table.ExecuteQuerySegmentedAsync<DescriptionEntity>(query, null);
            foreach (DescriptionEntity item in items) {
                response.AppendLine($"Key: {item.RowKey}; Value: {item.Description}");
            }

            return response.ToString();
        } 

问题

如何以与 SQL Context 相同的方式集成 Azure 表?我的意思是,对 Azure 表执行相同的 3 个步骤:

  1. 创建 Azure 表上下文,
  2. 配置服务(通过 Startup.cs 中的 ConfigureServices(IServiceCollection)),
  3. 将 "IAzureTable context" 传递给控制器​​的构造函数 ?.

我是新手,非常感谢步骤的代码示例。

例如,如何创建 Azure DBContext(如果需要这样的一个)?

根据此article(EF 的路线图),作为 EF 的 dbcontext 数据库的 azure table 存储现在不支持。属于高优先级特性,将在未来发布。

所以我们现在不能在 .net 核心中使用 table 存储作为 EF 的 dbcontext。

您可以看到 "High priority features" 包含 azure table 提供商,如下所示。

High priority features

Providers

Azure Table Storage
Redis
Other non-relational databases  

如果你想在 .net 核心中使用 azure table 存储,我建议你可以使用 azure 存储 SDK(从 Nuget 包安装)并编写你自己的逻辑来 CRUD 数据。