使用流利的api,我希望在运行时具有通用实体的表名。
我无法弄清楚如何使用扩展方法SqlServer类Trivial match can be simplified less... (⌘F1)
Suggests to replace trivial pattern match on a boolean expression with a conditional statement.
Before:
bool match {
case true => ???
case false => ???
}
After:
if (bool) {
???
} else {
???
}
中的内容。
我相信这种扩展方法可以调查sqlserver实体上配置了哪个表名称。