Fabien Ménager
Fabien Ménager
_From james.as on October 17, 2012 08:34:48_ Agree this would be great
That is something I was looking at a few months ago, @sabberworm's project was my first choice, but I saw another similar project: https://github.com/ju1ius/css-parser, even if it is less active,...
In a branch of mine I replaced string.format with a statement formatter, can you wait to make this change please? I'd like to show you first
The change I mentioned is now merged (https://github.com/fluentmigrator/fluentmigrator/pull/2025)
@jzabroski what do you mean by "less readable version" ? I see 261 usages of string.Format, are there any of them that we should keep ?
I did not know about this principle. Though I don't think nor the C# compiler applies this nor any Roslyn analyzer. I never had any compiler warning about this, only...
I'm currently trying to make a DOCX import feature that does not require an HTML conversion before. So I think that the library should have the notion of paragraph if...
I suggest a simpler syntax : ```csharp Alter.Table("products") .IfExists() .AddColumn("total").AsDecimal(10, 2).Nullable(); Create.Table("Projects") .IfNotExists() .WithColumn("Name").AsString().NotNullable() .WithColumn("Position").AsInt32().NotNullable() .WithColumn("Done").AsBoolean().NotNullable(); // I just noticed that this one already exists ! 🎉 Delete.Table("Contexts").IfExists(); ```
Is it for a specific migration or all migrations ? For this kind of hooks, maybe maintenance migrations may be useful https://fluentmigrator.github.io/articles/maintenance-migrations.html?q=maintenance
> @PhenX The Postgres tests are failing due to the new code missing a trailing semi-colon at the end of the statement. Any chance you can fix it? I think...