Frans Bouma
Frans Bouma
The generated index page of a section contains links to the pages of the section and if a page is actually an index of another section, there's no visual clue...
Currently the selection of languages doesn't contain assembler
It currently uses a regexp, which is not how markdowndeep works, and it matches @@include directives in code blocks as well. The markdowndeep parser's span parser is a likely candidate...
Currently the only way (which is lame) to center things is by using the `` tag directly. It would be nice if there was a way to specify a center...
Some markdown flavors have super/subscript extensions: `^superscript^` and `~subscript~` This is not hard to add.
In the LLBLGen Pro query engines we don't use any ADO.NET specific namespaces and the db engines in Linq to Sql2 should not depend on any external namespace. This requires...
To make it possible to support multiple database types, the sql server specific code has to be refactored into a separate assembly. Make sure it builds on top of a...
(Related to #20) It might be required to exclude some fields from a fetch, e.g. because these fields are very big (data wise) and not needed for the use case...
This test fails ``` C# [Test] public void PhantomInsertPreventionTest() { var newCustomer = new Customer(); var ba = new Address(); var va = new Address(); newCustomer.VisitingAddress = va; newCustomer.BillingAddress =...
Entity splitting is sometimes a nice feature if you want to model a part of an entity into another entity. Typical example is to model the Photo field (which is...