Devlooped.TableStorage.Protobuf.Source 5.2.0

前缀已保留
dotnet add package Devlooped.TableStorage.Protobuf.Source --version 5.2.0                
NuGet\Install-Package Devlooped.TableStorage.Protobuf.Source -Version 5.2.0                
此命令旨在在Visual Studio的包管理器控制台中使用,因为它使用NuGet模块的Install-Package版本。
<PackageReference Include="Devlooped.TableStorage.Protobuf.Source" Version="5.2.0" />                
对于支持包引用的项目,将此XML节点复制到项目文件中以便引用软件包。
paket add Devlooped.TableStorage.Protobuf.Source --version 5.2.0                
#r "nuget: Devlooped.TableStorage.Protobuf.Source, 5.2.0"                
#r指令可以在F# Interactive和Polyglot Notebooks中使用。将其复制到交互式工具或脚本的源代码中,以便引用软件包。
// Install Devlooped.TableStorage.Protobuf.Source as a Cake Addin
#addin nuget:?package=Devlooped.TableStorage.Protobuf.Source&version=5.2.0

// Install Devlooped.TableStorage.Protobuf.Source as a Cake Tool
#tool nuget:?package=Devlooped.TableStorage.Protobuf.Source&version=5.2.0                

仅供源代码使用的Protocol Buffers二进制序列化程序,用于文档型存储库。

用法

  var repo = DocumentRepository.Create<Product>(..., serializer: ProtobufDocumentSerializer.Default);

文档存储

DocumentRepository.CreateDocumentPartition.Create工厂方法提供了对基于文档的存储的访问,该访问类似于基于列的存储的API。

文档存储库导致实体作为单个文档列被持久化,同时包含类型和版本信息,这样就可以在应用程序级别处理版本。

API与基于列的存储库的大致相同(文档存储库实现了相同的底层ITableStorage接口)

public record Product(string Category, string Id) 
{
  public string? Title { get; init; }
  public double Price { get; init; }
  public DateOnly CreatedAt { get; init; }
}

var book = new Product("book", "9781473217386")
{
    Title = "Neuromancer",
    Price = 7.32
};

// Column-based storage
var repo = TableRepository.Create<Product>(
    CloudStorageAccount.DevelopmentStorageAccount,
    tableName: "Products",
    partitionKey: p => p.Category,
    rowKey: p => p.Id);

await repo.PutAsync(book);

// Document-based storage
var docs = DocumentRepository.Create<Product>(
    CloudStorageAccount.DevelopmentStorageAccount,
    tableName: "Documents",
    partitionKey: p => p.Category,
    rowKey: p => p.Id
    serializer: [SERIALIZER]);

await docs.PutAsync(book);

如果没有提供,序列化器默认为基于System.Text.JsonDocumentSerializer.Default

存储中的差异可以在以下Azure Storage Explorer的屏幕截图中看到

Screenshot of entity persisted with separate columns for properties

Screenshot of entity persisted as a document

文档表中的Type列保留了持久化的实体类的Type.FullName,而Version是该程序集的[主版本].[次版本]。这可以在进行高级数据迁移场景中使用。主次版本组件也作为单独的列提供,以便通过使用IDocumentRepository.EnumerateAsync(predicate)更加方便地按各种版本范围进行查询。

赞助商

Clarius Org Kirill Osenkov MFB Technologies, Inc. Stephen Shaw Torutek DRIVE.NET, Inc. Ashley Medway Keith Pickford Thomas Bolon Kori Francis Toni Wenzel Giorgi Dalakishvili Uno Platform Dan Siegel Reuben Swartz Jacob Foshee alternate text is missing from this package README image Eric Johnson Ix Technologies B.V. David JENNI Jonathan Oleg Kyrylchuk Charley Wu Jakob Tikjøb Andersen Seann Alexander Tino Hager Mark Seemann Ken Bonny Simon Cropp agileworks-eu sorahex Zheyu Shen Vezel ChilliCream 4OTC

赞助此项目  

了解更多关于GitHub赞助的信息

产品 兼容的和一些额外的计算目标框架版本。
.NET net5.0已计算。 net5.0-windows已计算。 net6.0已计算。 net6.0-android已计算。 net6.0-ios已计算。 net6.0-maccatalyst已计算。 net6.0-macos已计算。 net6.0-tvos已计算。 net6.0-windows已计算。 net7.0已计算。 net7.0-android已计算。 net7.0-ios已计算。 net7.0-maccatalyst已计算。 net7.0-macos已计算。 net7.0-tvos已计算。 net7.0-windows已计算。 net8.0已计算。 net8.0-android已计算。 net8.0-browser已计算。 net8.0-ios已计算。 net8.0-maccatalyst已计算。 net8.0-macos已计算。 net8.0-tvos已计算。 net8.0-windows已计算。
.NET Core netcoreapp2.0已计算。 netcoreapp2.1已计算。 netcoreapp2.2已计算。 netcoreapp3.0已计算。 netcoreapp3.1已计算。
.NET Standard netstandard2.0 兼容。 netstandard2.1 已计算。
.NET 框架 net461 已计算。 net462 已计算。 net463 已计算。 net47 已计算。 net471 已计算。 net472 已计算。 net48 已计算。 net481 已计算。
MonoAndroid monoandroid 已计算。
MonoMac monomac 已计算。
MonoTouch monotouch 已计算。
Tizen tizen40 已计算。 tizen60 已计算。
Xamarin.iOS xamarinios 已计算。
Xamarin.Mac xamarinmac 已计算。
Xamarin.TVOS xamarintvos 已计算。
Xamarin.WatchOS xamarinwatchos 已计算。
兼容的目标框架
包含的目标框架(在包中)
更多关于 目标框架.NET 标准 的信息。

NuGet 包

此包未被任何 NuGet 包使用。

GitHub 仓库

此包未被任何流行的 GitHub 仓库使用。

版本 下载 最后更新
5.2.0 53 7/24/2024
5.2.0-rc.1 44 7/13/2024
5.2.0-rc 64 7/10/2024
5.2.0-beta 66 7/6/2024
5.1.2 164 1/25/2024
5.1.1 328 10/4/2023
5.1.0 312 8/11/2023
5.0.2 307 8/8/2023
5.0.1 167 7/25/2023
5.0.0 150 7/25/2023
4.3.1 218 7/24/2023
4.3.0 164 6/27/2023
4.2.1 236 4/17/2023
4.2.0 255 3/28/2023
4.1.3 343 1/20/2023
4.1.2 320 1/16/2023
4.0.0 471 8/26/2022
4.0.0-rc.1 94 8/26/2022
4.0.0-rc 315 8/15/2022
4.0.0-beta 289 5/17/2022
4.0.0-alpha 308 5/4/2022
3.2.0 578 12/13/2021
3.1.1 466 8/29/2021
3.1.0 484 8/13/2021
3.0.3 452 7/28/2021
3.0.2 464 7/1/2021
3.0.1 514 7/1/2021
3.0.0 490 7/1/2021
2.0.2 472 6/23/2021
2.0.1 445 6/17/2021
2.0.0 533 6/16/2021
1.3.0 494 5/31/2021