python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to apply IQueryOver<TRoot> methods to IQueryOver?
I'm wrapping QueryOver with the interface IQueryOver. Thanks UnderlyingCriteria I can access to the criteria.
I'd like to use the IQueryOver methods such as Take, Skip ...
My intention is to have a li...
lunatic84
Votes: 0
Answers: 1
NHibernate: How to insert C# [Guid] into MySQL [BINARY(16) DEFAULT (uuid_to_bin(uuid(),1))] column?
Environment: MySQL Server 8.0, .NET Core 3.1, MySql.Data 8.0.28, NHibernate 5.3.11
I have following table:
CREATE TABLE `Master` (
`Row_Id` char(36) NOT NULL DEFAULT (uuid()),
`Path` varchar(1000)...
PNG
Votes: 0
Answers: 2
How to Join a table with a list NHibernate?
I have a list of objects like this
public class MyList
{
public int recordNo { get; set; }
public bool IsValid { get; set; }
}
var result= (from pool in context.Table.W...
Samuel
Votes: 0
Answers: 1
Fluent Nhibernate Many to many with a pk and fk in one table
Hey i have the following mysql tables:
and i have the following maping classes:
public class WalletMap : ClassMap<Wallet>
{
public WalletMap()
{
Id(x => x.wa...
need_help_1234
Votes: 0
Answers: 1