views:

38

answers:

1

Is it possible for me to build some database functionality in a C#-library (using LINQ 2 SQL) and then somehow import it into a php (joomla) project?

A: 

One way to do it is to register the .NET assembly as COM object (using regasm.exe) and then consume it from PHP.

Darin Dimitrov