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

Support server side value conversions #10861

Open
ajcvickers opened this issue Feb 2, 2018 · 13 comments
Open

Support server side value conversions #10861

ajcvickers opened this issue Feb 2, 2018 · 13 comments

Comments

@ajcvickers
Copy link
Member

Value conversions as implemented for #242 work by converting the value after it has come from the database and before it is send back to the database. In some situations it is useful to instead convert in the generated SQL. This enables support for cases where the database provider has no support for some database type, but it can be converted to some other database type that the provider can handle.

@ajcvickers
Copy link
Member Author

Also consider the discussion in #12762 when working on this.

@roji
Copy link
Member

roji commented Aug 12, 2018

Am interested in the reason for punting this - have you guys found a different way of implementing spatial support for SQL Server?

This would be useful for some other uses - PostgreSQL has some types which the Npgsql ADO driver doesn't support. These are mainly exotic/rare types, but server-side conversions would allow converting them to text before fetching. Definitely nothing important that should change the priority of this, though.

@bricelam
Copy link
Contributor

Have you guys found a different way of implementing spatial support for SQL Server?

Yes. We're reading and writing bytes directly based on the serialization format.

@roji
Copy link
Member

roji commented Aug 13, 2018

Oh, OK... Does this mean the .NET Core SqlClient will soon be able to read and write SqlGeometry/Geography? Or is this something you're implementing at the EF Core level?

@ajcvickers
Copy link
Member Author

@roji EF level, unfortunately.

@bricelam
Copy link
Contributor

Well... we've implemented an NTS I/O reader and writer. Anyone could use them directly with SqlDataReader and SqlParameter. But obviously this is a lot different than using SqlGeometry directly on the client.

@roji
Copy link
Member

roji commented Aug 14, 2018

@dpsenner translating operations on field of PostgreSQL composite types (UDTs) is a different thing from what this issue is about, and AFAIK requires Npgsql support rather than anything specific from EF Core.

This issue is about translating done database type to something else in SQL, before it is fetched to the client (and accordingly for sending).

@dpsenner
Copy link

Sorry, comment removed.

@tystol
Copy link

tystol commented Jan 19, 2019

I'm testing out EF Core right now, and one thing I was hoping for (that was never supported in EF6) is allowing EF models to contain strong typed IDs (eg. so the compiler can enforce preventing the passing of a CompanyId into a method that takes an EmployeeId, when both the underlying ids are just Guids).

I assumed ValueConverters allowed for this. eg:

public class Post
{
    public PostId PostId { get; set; }
    public string Title { get; set; }
    public string Content { get; set; }
}
public class PostId
{
    public Guid Id { get; set; }
    // Equality/hashcode overrides omitted for brevity.
}

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
    var converter = new ValueConverter<PostId, Guid>(
        v => v.Id,
        v => new PostId { Id = v });

    modelBuilder
        .Entity<Post>()
        .Property(p => p.PostId)
        .HasConversion(converter);

    base.OnModelCreating(modelBuilder);
}

While this works to generate a migration, even a simple query is evaluated in memory. eg:

var postId = new PostId { Id = 2.ToGuid() };
var post = dbContext.Posts.FirstOrDefault(p => p.PostId == postId);

Do value converters currently prevent ALL server side evaluation?
I did see the documentation:

Use of value conversions may impact the ability of EF Core to translate expressions to SQL. A warning will be logged for such cases. Removal of these limitations is being considered for a future release.

but to me the wording implied it may not work in some complex edge cases, where as my test above is pretty much as simple as you can get.

If my understanding above is correct, is this the correct issue to subscribe to for tracking progress/support? And will it support my case above when implemented?
And do we have an estimated timeline/version yet?

@ajcvickers
Copy link
Member Author

ajcvickers commented Jan 22, 2019

@smitpatel See comment above, which is essentially about SQL translation with value converters. This is likely a duplicate of something, but I can't find the best fit.

@smitpatel
Copy link
Member

@ajcvickers @tystol - Duplicate of #12045

@marchy
Copy link

marchy commented Jan 1, 2021

Given #12045 is now closed, does this mean this is as well?

@ajcvickers
Copy link
Member Author

@marchy Nope, this is still in the backlog for consideration.

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

No branches or pull requests

8 participants