Entity framework and VARBINARY

霸气de小男生 提交于 2019-12-19 06:56:08

问题


I’m using the .NET entity framework and I’ve got one entity containing a varbinary. Is there an easy way to get the size of the varbinary in the codebehind, efter it’s been retrieved from the database?

I’m thinking there might be some way to get the size directly from the entity, something like entity.Context.Size – or do one need to handle it differently?


回答1:


A varbinary translates to a byte[] field in Entity Framework, which means you can check the Length property of the array:

int fieldSize = entity.MyVarBinaryField.Length;

As mentioned by tster: In a LINQ to Entities query, you can call the DataLength method of the SqlFunctions class, which will translate into a DATALENGTH function call in the generated SQL statement. This only works with SQL Server and Entity Framework 4 or later:

int? fieldSize = repository.Entity
  .Select(e => SqlFunctions.DataLength(e.MyVarBinaryField)).Single();



回答2:


I know this question is old, but EF now supports this by using SqlFunctions.DataLength()




回答3:


I solved it by running another query, getting the DATALENGTH() of the cell. Not the smoothest way but it works.

I'm still interested in hearing if anyone can come up with an answer for this though.



来源:https://stackoverflow.com/questions/605790/entity-framework-and-varbinary

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!