Dapper-FluentMap icon indicating copy to clipboard operation
Dapper-FluentMap copied to clipboard

Provides a simple API to fluently map POCO properties to database columns when using Dapper.

Results 17 Dapper-FluentMap issues
Sort by recently updated
recently updated
newest added

Hi, when a property is marked with "ignore()" the Select throw an exception "Not implemented exception" ![image](https://user-images.githubusercontent.com/11925650/142888815-d04b064b-9353-455b-94ca-89b3bb877c4a.png) This is the mapping ![image](https://user-images.githubusercontent.com/11925650/142888965-e027579a-7813-4ea1-80c0-04316b3f4173.png)

Hi. I get NotImplementedException when try to use `.Ignore()` at EntityMap. Here is example code: ```csharp class Program { static async Task Main(string[] args) { var connectionString = "User ID=pt_system;Password=P@ssw0rdP@ssw0rd;Host=localhost;Port=5432;Database=dapper_poc;Pooling=true;Maximum...

https://www.nuget.org/packages/Dapper.FluentMap.Dommel/ ![image](https://user-images.githubusercontent.com/6296474/124838947-238e3280-df88-11eb-8f44-ae29c1f16548.png) [PR 129](https://github.com/henkmollema/Dapper-FluentMap/pull/129) contains a critical fix, @henkmollema can you please update it?.

.NET Core 3.1 Win 10 64 bit Dommel 2.1.0 Dapper 2.0.35 Dapper-FluentMap.Dommel 2.0.0 Even DatabaseGeneratedOption.Computed is used for property, Dapper.FluentMap.Dommel still generates column and parameter names in insert\update query, but...

My program use Sqlite 3 and I set a datetime field with the defalut value of datetime('now', 'localtime'). 1. When I map the field with the Ignore method, it's ok...

I have an Entity with a property named "Format". When mapping, FluentMap throws: `InvalidCastException: Unable to cast object of type 'System.Reflection.RuntimeMethodInfo' to type 'System.Reflection.PropertyInfo'. Dapper.FluentMap.Mapping.EntityMapBase.Map(Expression expression)` This is caused probably...

bug

``` public class BadgeMapper : EntityMap { public BadgeMapper() { Map(p => p.Rank.Level) .ToColumn("Rank_Level"); } } ``` As in my previous ticket, I tried with just one mapping to see...

First of all a quick thank you for all the work you've put into this project. Currently i'm trying to combine conventions and an entitymap to map a poco to...

enhancement

``` public class BadgeMapper : EntityMap { public BadgeMapper() { Map(p => p.Rank.Level) .ToColumn("Rank_Level"); Map(p => p.Seniority.Level) .ToColumn("Seniority_Level"); Map(p => p.CompletedProfile.Level) .ToColumn("CompletedProfile_Level"); Map(p => p.VerifiedProfile.Level) .ToColumn("VerifiedProfile_Level"); Map(p => p.Popular.Level) .ToColumn("Popular_Level");...

My Entities ; public class Category { public int Id { get; set; } public string Name { get; set; } public string Definition { get; set; } public int...