-
It would be very good if we had the possibility to perform a mapping of 1 -> N
Initially, It could be could only follow first-level mapping.
For example
````
public class Profile
{
…
-
When using |upper on a variable, "DÆK OG FÆLGE" is showen as "DÆK OG FÆLGE"
When not using filers, or using capatilize it works fine.
using twig/twig (v1.16.2)
-
For some reason mapping of byte arrays seem to be ignore when inserting new records.
-
PropertyResolverBase.FilterComplexTypes removes byte[] which is a valid SQL server type.
-
```cs
public class InventoryMovementTypeMap : DommelEntityMap
{
public InventoryMovementTypeMap()
{
ToTable("inventory_movement_types");
Map(i => Inve…
-
Hi all,
After further investigation, I found out that we do not need a `DBAdapter` as a middle layer for `Dommel` simply can act as such role itself. And also the use of `Dommel` and put `IDBConnec…
-
My table contains `datetimeoffset(0)` column and respected class has `DateTimeOffset` property. Current implementation ignores such properties. That is because `PropertyResolverBase.PrimitiveTypes` pr…
-
Cannot insert explicit value for identity column in table 'category' when IDENTITY_INSERT is set to OFF.
```
private static string BuildInsertQuery(IDbConnection connection, Type type)
{…
-
Hello,
We have the trouble with Dommel.
We use: MySQL 5.6.15 + Dapper 1.50.2 + Dommel 1.6.0 + Dapper.FluentMap.Dommel 1.4.0
Our Model:
``` C#
public class AppCityList
{
public int Id { get; set…
-
Currently all the query cache's are stored in dictionaries with
`if (!dictionary.hasKey(type)) { //build sql based off of type and store in dictionary }`
logic. Problems occur when more than on…