I've run into a case where something that worked fairly well with LINQ to SQL seems to be very obtuse (or maybe impossible) with the Entity Framework. Specifically, I've got an entity that includes a rowversion property (both for versioning and concurrency control). Something like:

public class Foo
{
  [Key]
  [MaxLength(50)]
  public string FooId { get; set; }

  [Timestamp]
  [ConcurrencyCheck]
  public byte[] Version { get; set; }
}

I would like to be able to take a entity as input, and find all of the other entities that are more recently updated. Something like:

Foo lastFoo = GetSomeFoo();
var recent = MyContext.Foos.Where(f => f.Version > lastFoo.Version);

Now, in the database this would work: two rowversion values can be compared to one another without any problems. And I've done a similar thing before using LINQ to SQL, which maps the rowversion to System.Data.Linq.Binary, which can be compared. (At least to the extent that the expression tree can be mapped back to the database.)

But in Code First, the type of the property must be byte[]. And two arrays can't be compared with the regular comparison operators. Is there some other way to write the comparison of the arrays that LINQ to Entities will understand? Or to coerce the arrays into other types so that the comparison can get past the compiler?

link|improve this question

78% accept rate
If you can tolerate the potential for an OCC overwrite (sub-millesecond fetch/update on the same column), you could avoid the rowversion type and use DateTime2 for your timestamps. This would allow you to perform the comparisons you indicated and also give you a realistic last-modified timestamp. – Brent M. Spell Sep 16 '11 at 2:20
If it comes to that, I'll probably keep the rowversion for concurrency, and add a date field for the querying I need to do. It's highly unlikely that I'd be updating more than one entity in the same millisecond, but I like the unambiguous nature of the rowversion. – Sixten Otto Sep 16 '11 at 16:13
Unfortunately, in that case, you'll also have to manually update the date/time field whenever you update the row. ConcurrencyCheck on the date/time property would do this automatically, and I don't think you can have more than one ConcurrencyCheck property on a class. – Brent M. Spell Sep 16 '11 at 20:55
That's a good point, but the updates in this particular app will be pretty controlled, so that won't be a very big burden. But, yeah, if we were doing piecemeal updates of the data in various places, it might be a pain to remember that. – Sixten Otto Sep 17 '11 at 15:02
feedback

1 Answer

up vote 2 down vote accepted

You can use SqlQuery to write the raw SQL instead of having it generated.

MyContext.Foos.SqlQuery("SELECT * FROM Foos WHERE Version > @ver", new SqlParameter("ver", lastFoo.Version));
link|improve this answer
Technically, yes. I have a few reservations about this, though. First, the API I'm exposing has to be the concrete DbSet<T> and DbContext, and not the interfaces. Second, that in a Code First model, doing SQL queries smells pretty bad to me. More importantly, it seems that you have to select exactly the set of rows needed to populate the entity, no more or less. And with Code First generating the schema automatically from a non-contrived model, that's potentially much more complicated than just "select * from Foos". – Sixten Otto Sep 16 '11 at 20:30
This does suggest a possible workaround, though: add a method to my repository that does a query for the set of PK values, and then select the entities with the matching PKs in a second step. – Sixten Otto Sep 16 '11 at 20:34
Still don't feel like this is an optimal solution, but I did end up using the workaround I mentioned earlier, so I'm marking this as the answer. – Sixten Otto Nov 14 '11 at 16:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.