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)
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
two entities of One-on-One relationship and use Hibernate namedQuery API
A is associated with B in a one-on-one relation, the purpose is to retrieve columns from both A and B. First implementation took advantage of Hibernate Entity and relevant APIs, and the relationship w...
J.E.Y
Votes: 0
Answers: 0
Stackoverflow error when trying to delete parent entity using hibernate
I am using hibernate to check if it can be used for all operations I want to be able to do in my application. So this is a PoC stage that I am in right now.
The following is my persistence-mappings-as...
abdul mannan
Votes: 0
Answers: 0