Simon Hughes

Results 30 issues of Simon Hughes

```sql CREATE PROCEDURE CheckIfApplicationIsComplete @ApplicationId INT, @IsApplicationComplete BIT OUTPUT AS BEGIN SET NOCOUNT ON; IF (@ApplicationId < 10) BEGIN SET @IsApplicationComplete = 0; SELECT 'Application' [Key], 'Not complete' [Value]; END...

Investigate this library to see if the output of the generator can make use of these specifications.

To investigate

This will keep the FakeDbContexts clean and tidy and easy to read without the clutter.

enhancement

If a stored procedure contains conditional statements, such as this: ``` sql IF(@someVar < @otherVar) BEGIN SELECT a,b,c WHERE blah ELSE SELECT a,b,c WHERE blah OR blah END ``` The...

enhancement

Related to case #556 Existing licensing is for per developer with unlimited solutions. This works for companies with a small number developers and lots of projects. However, it doesn't work...

enhancement

How I could use the reverse poco generator on SQL database that uses Azure MFA as it’s authentication method? When I attempt to access the database I receive the following...

enhancement
To investigate

Add computed columns SQL, so that migrations can fully create the database elsewhere. See [MSDN](https://docs.microsoft.com/en-us/ef/core/modeling/generated-properties?tabs=data-annotations#computed-columns) ```c# protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity() .Property(p => p.DisplayName) .HasComputedColumnSql("[LastName] + ', '...

enhancement

Allow for this to be run using a dotnet command for .NET Core projects. That will allow you to generate from the command line, or a console application. The T4...

enhancement

Create a series of short video tutorials covering all the topics that version 3 can do.