You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
518 B
C#

3 months ago
using Chloe.Entity;
namespace DNSD_DB.Mapper
3 months ago
{
public class RfidSettingMap : EntityTypeBuilder<RfidSetting>
3 months ago
{
public RfidSettingMap()
3 months ago
{
this.MapTo("RfidSetting");
3 months ago
this.Property(a => a.ID).IsAutoIncrement().IsPrimaryKey();
}
3 months ago
}
3 months ago
public class RFIDLogMap : EntityTypeBuilder<RFIDLog>
3 months ago
{
public RFIDLogMap()
3 months ago
{
this.MapTo("RFIDLog");
3 months ago
this.Property(a => a.ID).IsAutoIncrement().IsPrimaryKey();
}
}
3 months ago
}