I´m new to ORMs and I have a new project I´ll do in .Net MVC. In the Model Layer I´ll create my classes: Videos and I´ll work with APIs as a DataLayer (BrightCove & YouTube APIs).
I want to transfer the following statement to SubSonic 2.2 SELECT b.* FROM tableA a INNER JOIN tableB b ON (a.year = b.year AND a.month = b.monath AND a.userid = b.userid);
When I run the custom tool to create the cs files for SubS开发者_StackOverflowonic all the templates now inject a letter g to the top of the cs files.To get this to compile I need to remove the g from
I am currently working on server application that has to deal with reasonable amount of clients over TCP in LAN. Tasks that server has to accomplish vary from trivial to mildly-complex, and most of th
I\'m developing an application which will have these classes: class Shortcut { public string Name { get; }
I\'m trying to insert the word \"Null\" (literally) in to a parameter for a stored procedure. For some reason SqlServer seems to think I mean NULL and not \"Null\". If I do a check for
I have a table like so.. CREATE TABLE [dbo].[Locations_Hours]( [LocationID] [int] NOT NULL, [sun_open] [nvarchar](10) NULL,
I\'m busy writing some extension methods and so far have been going fine. I have a method getCities that takes in an IQueryable qry and is supposed to return all of the regions in qry that have a reg
I\'m playing with Migrations and created a simple migration like public class Migration001 : Migration
Trying to use SubSonic 3.0.0.4\'s Linq TEmplates.Got everything working.But in the Doc\'s I\'m seeing how I can use aa IRepository to bulk inser开发者_如何学Ct, update, delete my db.Thing is - It wasn