NHibernate 在标准中传递参数

发布于 2024-07-25 05:59:10 字数 659 浏览 9 评论 0原文

我有一个 Ms Access 视图(查询),如下所示

select * from employee Where EmployeeId=SomeID

这里 SomeId不是字段名称

如果我从 MsAccess 运行此查询 它提示我输入 SomeId 的值,如下所示

|---------------------------------------|
| Enter Parameter Value               X |
|---------------------------------------|
| SomeId                                |
| [_________________________________]   |
|                                       |
|                [  OK  ] [ Cancel ]    |
-----------------------------------------

,并根据该值执行查询。

现在我的问题是如何使用 Nhibernate 中的 Criteria 传递此 SomeId。

I have an Ms Access view(query) as following

select * from employee Where EmployeeId=SomeID

Here SomeId is not a field name

If I run this query from MsAccess
It prompts me for entering value for SomeId as follows

|---------------------------------------|
| Enter Parameter Value               X |
|---------------------------------------|
| SomeId                                |
| [_________________________________]   |
|                                       |
|                [  OK  ] [ Cancel ]    |
-----------------------------------------

and executes the query based on the same.

Now My question is how can I pass this SomeId using Criteria in Nhibernate.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

痴意少年 2024-08-01 05:59:10
session.CreateCriteria(typeof(Employee))
    .Add(Restrictions.Eq("EmployeeId", someId)).List<Employee>();

或者

session.Load<Employee>(someId);
session.CreateCriteria(typeof(Employee))
    .Add(Restrictions.Eq("EmployeeId", someId)).List<Employee>();

or

session.Load<Employee>(someId);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文