WindowsAzure
WindowsAzure copied to clipboard
.NET library aimed at managing and querying entities from Windows Azure Storage. It can be used as LINQ to Azure Tables.
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.3 to 13.0.2. Release notes Sourced from Newtonsoft.Json's releases. 13.0.2 New feature - Add support for DateOnly and TimeOnly New feature - Add UnixDateTimeConverter.AllowPreEpoch property New feature...
I found a bug when using a Where Expression when any of the properties is an enum. I'm going to work to fix it. _at WindowsAzure.Table.Queryable.Expressions.Infrastructure.ExpressionTranslator.AppendConstant(Expression node) at WindowsAzure.Table.Queryable.Expressions.Infrastructure.ExpressionTranslator.AppendBinaryPart(Expression node,...
``` c# public static class CloudExtensions { public static async Task StartsWith (this CloudTable table, string partitionKey, string searchStr, string columnName = "RowKey") where TElement : ITableEntity, new() { if...
Hello @gblmarquez @dtretyakov or @timothy-makarov, I was wondering about your plans for this repository and NuGet package? Is it an option that you add me as a team member/admin or...
I found that there is OrderBy in the new library and it would be great to add support for it. https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.cosmos.table.tablequery.orderby?view=azure-dotnet
an error occurred System.ArgumentException:“Invalid entity member type: 'System.Boolean'.”
I have the following Entity: ``` public class IotHubMessageEntity { [PartitionKey] public string DeviceId { get; set; } [RowKey] public string RowKey { get; set; } [Timestamp] public DateTime Time...
We can use JSON as serialization format of custom types which is not supported by Azure Tables. Restrictions of this approach: string property length and searchability.
Consider discovering `EntityTypeMap` classes (that resides along with the entities being in the same assembly) with `internal`access modifier along with the `public`access modifier.
If an entity has `ParititioKey` and `RowKey` properties, they should be discovered as `PartitionKey` and `RowKey` respectively by convention (implicitly) - without explicit decoration with attribute or setting with fluent...