Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jsonb[] mapping not working #3131

Open
sumit-sood-pluralsight opened this issue Mar 13, 2024 · 5 comments
Open

Jsonb[] mapping not working #3131

sumit-sood-pluralsight opened this issue Mar 13, 2024 · 5 comments

Comments

@sumit-sood-pluralsight
Copy link

sumit-sood-pluralsight commented Mar 13, 2024

Hi,
I am using these packages in my .Net Core 8project :

  • Microsoft.EntityFrameworkCore 8.0.2
  • Npgsql 8.0.2
  • Npgsql.EntityFrameworkCore.PostgreSQL 8.0.2
  • EFCore.NamingConventions 8.0.3

My DBContext looks like this :
services.AddDbContext<MyDbContext>( options => options.UseNpgsql(connectionStrings.ReadOnlyConnectionString) .UseSnakeCaseNamingConvention() .UseQueryTrackingBehavior(QueryTrackingBehavior.NoTracking)

When I am trying to map the jsonb[] (jsonb Array) using OwnsMany it's throwing error. I have added the mapping like this in the OnModelCreating :
builder.Entity<SomeEntity>() .OwnsMany(auth => auth.AllContent, d => { d.ToJson("all_content"); });

I have defined my POCO class as :

public class SomeEntity 
{     
 public List<SomeContent> AllContent { get; set; } = []; 
}
public class SomeContent {   
 [JsonPropertyName("guid")] 
 public string Id { get; set; } 
[JsonPropertyName("content_type")] 
public string ContentType { get; set; } 
[JsonPropertyName("status")] 
public string Status { get; set; } 
}

When I am trying to access my Entity I am getting error : "Reading as 'System.String' is not supported for fields having DataTypeName 'jsonb[]'\nType 'String' required dynamic JSON serialization, which requires an explicit opt-in; call 'EnableDynamicJson' on 'NpgsqlDataSourceBuilder' or NpgsqlConnection.GlobalTypeMapper (see https://www.npgsql.org/doc/types/json.html and the 8.0 release notes for more details). Alternatively, if you meant to use Newtonsoft JSON.NET instead of System.Text.Json, call UseJsonNet() instead."

Is jsob[] supported currently if yes Please suggest how to access jsonb[] or am I missing something. Thanks in Advance.

@zN3utr4l
Copy link

#3172 (comment)

I think my problem is related to this issue.

Have you found a way to fix it?

@dragos-stoica-metro
Copy link

same issue here when migrating from .net 6 to .net 8

@zN3utr4l
Copy link

dotnet/efcore#33913 It's a bug already reported, we're waiting for the resolution

@podhale
Copy link

podhale commented Jun 13, 2024

I have a similar problem when migrating from .net7 to .net 8

@NikiforovTem
Copy link

NikiforovTem commented Jun 13, 2024

I've got a similar exception when updated the version of Npgsql.EntityFrameworkCore.PostgreSQL to 8.0.4 from 6.0.7. I rolled back to 8.0.0
And added to my dbContext

        var dataSource = new NpgsqlDataSourceBuilder(options.ConnectionString)
            .EnableDynamicJson()
            .Build();

        serviceCollection.AddDbContext<MyDbContext>(dbContextOptions => dbContextOptions.UseNpgsql(dataSource));

For 8.0.6 with EnableDynamicJson I've got
System.ArgumentException: No mapping exists from object type System.Linq.Enumerable+SelectListIterator2[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Int64, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] to a known managed provider native type. at Microsoft.Data.SqlClient.MetaType.GetMetaTypeFromValue(Type dataType, Object value, Boolean inferLen, Boolean streamAllowed) at Microsoft.Data.SqlClient.MetaType.GetMetaTypeFromType(Type dataType) at Microsoft.Data.SqlClient.SqlParameter.GetMetaTypeOnly() at Microsoft.Data.SqlClient.SqlParameter.get_DbType() at EFCore.BulkExtensions.SqlAdapters.SqlDefaultDialect.ReloadSqlParameters(DbContext context, List1 sqlParameters)
at EFCore.BulkExtensions.BatchUtil.ReloadSqlParameters(DbContext context, List`1 sqlParameters)
at EFCore.BulkExtensions.BatchUtil.GetSqlDelete(IQueryable query, DbContext context)
at EFCore.BulkExtensions.IQueryableBatchExtensions.GetBatchDeleteArguments(IQueryable query)
at EFCore.BulkExtensions.IQueryableBatchExtensions.BatchDeleteAsync(IQueryable query, CancellationToken cancellationToken)

Updated: I have all the errors disappeared and on the latest version (8.0.4) . When I stopped using obsolete method BatchDelete from EFCore.BulkExtensions and replaced it with ExecuteDelete. But enabling EnableDynamicJson is also necessary

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants