Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
436 views
in Technique[技术] by (71.8m points)

c# - Store Jsonstring using Entity Framework Core ExecuteSqlRawAsync

I have an entity in which for one of the string field I want to store jsonstring (json equivalent of List of MyObject) using EF Core ExecuteSqlRawAsync extension.

However, I am getting this error :

Input string was not in a correct format.

from EF at

Microsoft.EntityFrameworkCore.Storage.Internal.RawSqlCommandBuilder.Build.

I am using EF Core version 3.1.

Please find below an overview of sample similar to what I am trying:

string query = "update mytable set column1 = 100, column2= '[{"property1":"value1","property2":null}]' where condition;update mytable set column1= 200, column2= '[{"property1":"value2","property":null}]' where condition;"

await this.Context.Database.ExecuteSqlRawAsync(query);

If I run the same raw SQL statement directly against the SQL Server database, it works just fine.

Is there some limitation in the RawSql extension that string field in an entity cannot have jsonstring?

Any help how to run raw query with one of the string entity field accommodating jsonstring?

question from:https://stackoverflow.com/questions/65642286/store-jsonstring-using-entity-framework-core-executesqlrawasync

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The problem is caused by the '{' and '}' symbols inside SQL string, because in ExecuteSqlRaw{Async} they are used to specify parameter placeholders, so the string should be a valid input for string.Format function. In fact EF Core implementation uses string.Format (even though you don't pass parameters) at some point, which in turn generates the exception in question. Which can be seen if you do

string.Format(query);

The solution is to make it valid format string by doubling '{' and '}' symbols inside. For instance, in your sample:

string query = "update mytable set column1 = 100, column2= '[{{"property1":"value1","property2":null}}]' where condition;update mytable set column1= 200, column2= '[{{"property1":"value2","property":null}}]' where condition;"

Also it would be good if you try actually parameterizing your SQL.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...