2008-09-19, 07:50 AM 
	
	
	
		anyone using linq with a database?  ive used linq with sql server 2005 quite a lot, but i cant expect everyone to install sql server to use a plugin.  so was hoping someone has any recommendations for a portable database (like sqlite) that supports linq?
i really dont want to give up using queries like
its just so much nicer than handling the connection/command/datareader etc  
	
	
	
	
i really dont want to give up using queries like
Code:
Video v = (from v in db.Videos where v.ID = id select v); 
	 
