博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Dapper Extensions Change Schema
阅读量:5303 次
发布时间:2019-06-14

本文共 553 字,大约阅读时间需要 1 分钟。

Dapper Extensions Change Schema

 You can use the AutoClassMapper to assign a new schema to your model. An overview on this is on the . You will basically need to create an AutoClassMapper per model with a different schema. The best place to declare it is alongside your model itself like:

 

public class MyModel {  public Guid Id { get; set; } }public class MyModelMapper : AutoClassMapper
{ public MyModelMapper() : base() { Schema("YourNewSchema"); }}

  

转载于:https://www.cnblogs.com/dupeng0811/p/dapper-extensions-change-schema.html

你可能感兴趣的文章
管道,数据共享,进程池
查看>>
CSS
查看>>
[LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
查看>>
[Cypress] Stub a Post Request for Successful Form Submission with Cypress
查看>>
程序集的混淆及签名
查看>>
判断9X9数组是否是数独的java代码
查看>>
00-自测1. 打印沙漏
查看>>
UNITY在VS中调试
查看>>
SDUTOJ3754_黑白棋(纯模拟)
查看>>
Scala入门(1)Linux下Scala(2.12.1)安装
查看>>
如何改善下面的代码 领导说了很耗资源
查看>>
Quartus II 中常见Warning 原因及解决方法
查看>>
php中的isset和empty的用法区别
查看>>
Android ViewPager 动画效果
查看>>
pip和easy_install使用方式
查看>>
博弈论
查看>>
Redis sentinel & cluster 原理分析
查看>>
我的工作习惯小结
查看>>
把word文档中的所有图片导出
查看>>
浏览器的判断;
查看>>