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
519 views
in Technique[技术] by (71.8m points)

value objects - How to convert a method of a ValueObject to SQL with Entity Framework Core 3.1

I have this value object

public class ProductReference : ValueObject
{
   protected ProductReference(){}
   public ProductReference(string value){}
   public string Value{get; protected set;}
}

I use it in my entity as :

public class Product : Entity<long> 
{
   protected Product(){} 
   public ProductReference Reference{get; protected set;}   
}

In the OnModelCreating of my DbContext I defined :

modelBuilder.Entity<Product>(entity => {
                     entity.Property(a => a.Reference)
                    .HasColumnName("Reference")
                    .HasConversion(
                        a => a.Value,
                        s => new ProductReference (s);
 });

When I do :

await dbcontext.Products.Where(p=>p.Reference.Value.Contains("some text")).toArrayAsync();

I get an exception

Expression cannot be converted to a valid SQL statement

I know for sure there is a way to create a custom expression converter, but I cannot find a good, simple and EF Core 3.1 compatible example to deal with my issue and that explain me clearly the concepts I miss.

I found this very interesting project https://github.com/StevenRasmussen/EFCore.SqlServer.NodaTime but it is too advanced for me to reproduce it for only my use case.

[EDIT] the ValueObject ans Entity are from CSharpFunctionalExtensions nuget package, I dont think they are really relevant in my question.


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

1 Reply

0 votes
by (71.8m points)

So first for some context on what is happening here behind the scenes and why its not gonna work even for build in simple converters like BoolToZeroOneConverter.

The problem here is that you are calling when converting the new ProductReference(s). This is method where you can do whatever you want in it. For example if use it in a Select statement it will again fail. For example:

await dbcontext.Products
.Select(x=>new ProductReference(x.Value))
.toArrayAsync();

The reason is obvious, it won't be able to translate. But why it cant transform it to a query?

Because you are passing a constructor. Inside this constructor you could be doing API calls or using Reflections to set the variables to your object, pretty much anything. That of course is not able to be translated in an SQL query.

Converters are generally used for in memory but they can be used for databse operations as well. This would mean that you will need something like this:

await dbcontext.Products
.Select(x=>new ProductReference() // empty constructor that does nothing
{
    Property1 = x.Property1 // I don't know how the constructor maps them
})
.toArrayAsync();

Using this type of expression allow you to actually transalte the expression to an SQL statement and not making the conversion on the SQL DB and not in memory.

Now in your specific case using:

.HasConversion(
                        a => a.Value,
                        s => new ProductReference (){};
 });

Should fix your issues but I fail to understand why would you want to initialize or convert a ProductReference to a ProductReference.


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

1.4m articles

1.4m replys

5 comments

56.9k users

...