views:

19

answers:

1

If I were to write an application in IronPython 2.6, how easy would it be to use ADO.NET Entities as the DAL? Can anyone point to an example?

A: 

According to this post, the answer is no.

It looks like you can write your entire DAL in, say, C#, and call those methods from IronPython, but there won't be any linq support in IronPython.

Scott Whitlock