WindowsAzure icon indicating copy to clipboard operation
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.

Results 16 WindowsAzure issues
Sort by recently updated
recently updated
newest added

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...

dependencies

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,...

bug

``` 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...

question

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.

enhancement
serializer

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.

enhancement
serializer

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...

enhancement
serializer