mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
17 lines
427 B
C#
17 lines
427 B
C#
using System;
|
|
|
|
namespace DapperExtensions.Mapper
|
|
{
|
|
/// <summary>
|
|
/// Automatically maps an entity to a table using a combination of reflection and naming conventions for keys.
|
|
/// </summary>
|
|
public class AutoClassMapper<T> : ClassMapper<T> where T : class
|
|
{
|
|
public AutoClassMapper()
|
|
{
|
|
Type type = typeof(T);
|
|
Table(type.Name);
|
|
AutoMap();
|
|
}
|
|
}
|
|
}
|