-
Hi ! It's not an issue but it would be nice to have deletion by id and ids
As you do "con.Get\(1);" you could do "con.Delete\(1);"
-
Hi. I'm trying to convert `MyCustomProperty` to `my_custom_property` column (snake case) globally (for Postgresql). But `Convention` not applying to my model or even assembly namespaces.
Initializa…
-
- [x] Split classes into files
- [x] Support `[Table]` attribute
- [x] Support `[Column]` attribute
- [x] Support `[ForeignKey]` attribute - #72
- [x] Logging of queries
- [x] Fix joining tables …
-
If the interface `IForeignKeyPropertyResolver` computed the automatic multimapping join statement, then a later improvement to FluentMapping for custom foreign key resolution could include custom join…
-
Do you intend to support Oracle?
I am currently using FluentMap and would like to add Dommel for CRUD. But at the moment only Dapper-Extensions seems to have Oracle support.
See https://github.com/t…
-
I had this error trying to use the packages from domel v2
the file versions are:
Dapper.FluentMap 2.0.0-beta1
Dapper.FluentMap.Dommel 1.7.0
Dommel 2.0.0-beta5
the error is
Reference to type …
-
I'm having trouble working with a foreign key.
inside a class, I need to put the name of a property + "Id" so that it is recognized as foreign key.
This is not legal ..
Would not it be better…
-
@henkmollema The following combination does not works, i am expecting to work as IN operator.
```C#
List categories = (conn.Select(x => x.DeletedAt == null)).ToList();
List tables = (conn.Select…
-
When I call a API endpoint that gets a "Camera" by Id, it is returned what I expect.
When I call the same API endpoint to get a "Group" I get a error on mapping.
![image](https://user-images.githu…
-
Hello, we are running the following code:
```cs
var usuario = await cnx.GetAsync(id, (u, d) =>
{
u.Delegacion = d;
return u;
});
```
And the resulting SQL query is the following:
…