当前位置:  开发笔记 > 编程语言 > 正文

如果with关键字不好(对于C#),这是一个不错的选择吗?

如何解决《如果with关键字不好(对于C#),这是一个不错的选择吗?》经验,为你挑选了1个好方法。

当您使用正确的表单获得"添加"方法时,可以使用参数的集合初始化器:

var insInvoice = new NpgsqlCommand(sql)
{
    Parameters = 
    {
        { "_invoice_id", NpgsqlDbType.Uuid, 0, "invoice_id" },
        { "_invoice_detail_id", NpgsqlDbType.Uuid, 0, "invoice_detail_id" },
        { "_qty", NpgsqlDbType.Integer, 0, "qty" },
        { "_price", NpgsqlDbType.Numeric, 0, "price" }
    }
};

有关对象和集合初始值设定项的更多信息,您可以免费下载C#in Depth的第8章.



1> Jon Skeet..:

当您使用正确的表单获得"添加"方法时,可以使用参数的集合初始化器:

var insInvoice = new NpgsqlCommand(sql)
{
    Parameters = 
    {
        { "_invoice_id", NpgsqlDbType.Uuid, 0, "invoice_id" },
        { "_invoice_detail_id", NpgsqlDbType.Uuid, 0, "invoice_detail_id" },
        { "_qty", NpgsqlDbType.Integer, 0, "qty" },
        { "_price", NpgsqlDbType.Numeric, 0, "price" }
    }
};

有关对象和集合初始值设定项的更多信息,您可以免费下载C#in Depth的第8章.

推荐阅读
Gbom2402851125
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有