Click here to Skip to main content
15,897,704 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear all,

I 've a working project with entity framework but i couldn't identify EF Version.

Firstly:

i checked EntityFramework.dll properties in Visual studio and i found the following:

Rnumtime Version: v4.0.30319
Version: 6.0.0.0

Actually i don't know what is the difference.Hope any one differentiate

Secondly:

I checked web.config file and i found the following:
In configsections tag:
XML
<configSections>
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </configSections>


In System.web section:
XML
<compilation debug="true" targetFramework="4.5">
      <assemblies>
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
        <add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
      </assemblies>
    </compilation>


So Please can any one identify EntityFramework version and why?

Waiting your fast actions...

What I have tried:

I tried checking EntityFramework.dll properties and i aslo checked web.config file elements as mentioned above.
Posted
Updated 17-Mar-16 1:54am
v2

1 solution

Runtime Version is the version of the CLR (.NET framework) that the library(dll) was built against,

Version is the DLL's version.

So as per your question EntityFramework version is 6.0 and .Net framework version is 4.5
 
Share this answer
 
Comments
_ProgProg_ 17-Mar-16 8:25am    
Thanks you so much for that

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900