I have a website that does inserts into this table below. I need to do some manual inserts but I wasn\'t sure how do pass in the equivalent of DateTime.Now in C#.
Just use GETDATE() or GETUTCDATE() (if you want to get the "universal" UTC time, instead of your local server's time-zone related time).
GETDATE()
GETUTCDATE()
INSERT INTO [Business] ([IsDeleted] ,[FirstName] ,[LastName] ,[LastUpdated] ,[LastUpdatedBy]) VALUES (0, 'Joe', 'Thomas', GETDATE(), )