I downloaded SubSonic 3.0.0.4 sources from https://github.com/subsonic/SubSonic开发者_JS百科-3.0 and compiled it using Visual Studio 2010. When I add the compiled SubSonic.Core.dll to my own project a
I have been looking for an ORM of late and SubSonic with its SimpleRepository appears to be the solution I\'m looking for.
I need to use stored procedure to get data from DB, but I would also like to use IQueryable to add some filtering to results. I\'m using subsonic and for now can\'t see a way to use subsonic sp and IQ
I need to make a query like : SELECT * from TABLE WHERE cola= \"aaa\" and ( (colb = \"bbb\" and (colc=\"ccc\" or colc = \"ddd\"))
I\'ve setup subsonic 2.2 on a new website project. after going through all the needed steps, I\'ve managed to make it roll.
I\'m using Subsonic 2.1 and I\'m having an error with the next query: SqlQuery queryResTitle = new Select(
I\'m looking for new ORM for a important开发者_运维知识库 project, im used to nHibernate with ActiveRecord and I already have a very bad experiencia with EF4, performance and crashing GUI.
I have two lines of code, one is AllItems().Where(c => c.Id== id) .Select(d => new Quality(d.QualityType)).ToList();
Say I have a stored procedure that returns dataSet from 2 different tables. Example: SELECT Customers.FirstName, Customers.LastName, SUM(Sales.SaleAmount) AS SalesPerCustomer
I have an MVC project that consumes a WCF service.The service returns a collection of locations that is used to filter for autocomplete in a text box.