FastCrud
FastCrud copied to clipboard
fast .NET ORM for strongly typed people
I fixed the named parameter issues by adding the possibilty to add a parameter suffix (in SAnywhere SQL its ?paramName?) and made the suffix default to empty string. The sybase...
is there a way to find out how the language converted to the final sql string? for example: ``` var queryParams = new { FirstName = "John", Street = "Creek...
It would be great to be able to configure the access modifier of the generated models, so they can be internal instead of public for example.
Hi, upgrading to a new version just broke our code. The first issue is that `IsPrimaryKey` is now obsolete and will be removed, completely removing the way to dynamically discover...
Not everything is an issue. We now have [a place](https://github.com/MoonStorm/FastCrud/discussions) to ask questions, post ideas and help others! Thanks GitHub!
I have a table that I'm trying to update that contains a timestamp column. The timestamp column is marked DatabaseGenerated (DatabaseGeneratedOption.Computed). I would expect the entity to be updated in...
Add schema qualifier to allow generation on table name clashes for differing schema.
It's not really an issue, it's just a possible enhancement. When i find some time, i'll see if i can do it on a fork and create a pull request...
TableValuedFunction supporting was added. To did this the EntityMapping class was converted to an abstract class. TableValuedFunctionEntityMapping and EntityMapping which inherited the abstract EntityMapping were added. SetDatabseName was addedd to...
concurrency check implementation