Hi.
So I want to retrieve data using stored procedures. Preferably via Linq2SQL. So I can do something like this (example):
var productHistory = dbname.StoredProcedureMethod(value);
foreach(var product in productHistory)
{
//stuff
}
This is something I'd like to be able to do in Visual Studio 2008 in .Net 3.5. It is possible with Visual studio 2008 + .Net 3.5 + SQL Server 2008.
But firstly, I don't like SQL Server 2008 and secondly, I need the database to be absolutely portable. I've always liked SQLite.net, but it is not a direct requirement - as long as the database solution is portable.
I haven't been able to set anything up but Visual studio 2008 + SQLite.Net.
So yeah, I am asking for your help :)