LinqToSql and abstract base classes

前端 未结 4 449
[愿得一人]
[愿得一人] 2021-01-18 11:59

I have some linq entities that inherit something like this:

public abstract class EntityBase { public int Identifier { get; } }

public interface IDeviceEnti         


        
相关标签:
4条回答
  • 2021-01-18 12:22

    LINQ-to-SQL has some support for inheritance via a discriminator (here, here), but you can only query on classes that are defined in the LINQ model - i.e. data classes themselves, and (more perhaps importantly for this example) the query itself must be phrased in terms of data classes: although TEntity is a data class, it knows that the property here is declared on the entity base.

    One option might be dynamic expressions; it the classes themselves declared the property (i.e. lose the base class, but keep the interface) - but this isn't trivial.

    The Expression work would be something like below, noting that you might want to either pass in the string as an argument, or obtain the primary key via reflection (if it is attributed):

    static Expression<Func<T, bool>> BuildWhere<T>(int deviceId) {
        var id = Expression.Constant(deviceId, typeof(int));
        var arg = Expression.Parameter(typeof(T), "x");
        var prop = Expression.Property(arg, "DeviceId");
        return Expression.Lambda<Func<T, bool>>(
            Expression.Equal(prop, id), arg);
    }
    
    0 讨论(0)
  • 2021-01-18 12:27

    Wow, looks like for once I may be able to one-up @MarcGravell!

    I had the same problem, then I discovered this answer, which solved the problem for me!

    In your case, you would say:

    return unitOfWork.GetRepository<TEntity>().Select(x => x).FindOne(x => x.DeviceId == evt.DeviceId);
    

    and Bob's your uncle!

    0 讨论(0)
  • 2021-01-18 12:30

    Try .OfType<>() as posted here https://stackoverflow.com/a/17734469/3936440, it works for me having the exact same issue.

    0 讨论(0)
  • 2021-01-18 12:34

    This kind of heirarchial mapping isnot possible with LinqToSql. The the mapping is setup it cannot map to properties in base classes. I went around on this for a couple of months when it first came out. The best solution is to use the entity framework. It gives you much more flexibility with creating your object model. It will allow you to do exactly what your trying to do here.

    Here is some information on the entity framework: MSDN Article

    0 讨论(0)
提交回复
热议问题