Reputation: 5
Is it possible to use linq-to-entities
in DotNetNuke
? On the other hand can a c# dotnetnuke development package
be used to develop a linq-to-entities dotnetnuke web application
?
Upvotes: 0
Views: 663
Reputation: 2746
Version 7 of DNN will start using PetaPoco as an ORM. You should definitely consider using PetaPoco instead of Linq-To-Entities.
Upvotes: 0
Reputation: 155985
There is a module template available at http://dnntechtemplate.codeplex.com/ which demonstrates using Entity Framework in a DotNetNuke environment (taking care of the objectQualifier
and databaseOwner
configuration automatically).
Upvotes: 1