frankiDotNet
frankiDotNet
Hi, Is there a way to execute multiple queries with the sevicecontext, without multiple round trips. In my situation I would like to execute a select and a count of...
Hi, I have this example classes: ``` public class PayData { public string Article { get; set; } public int Id { get; set; } public string Name { get;...
Hi, is it possible to create an update or insert script by selecting multiple items? Something like the create insert script but with selecting matching columns.
I could not find anything about mapping calsses that contains sub classes. ``` [Table("TableA")] public class ClassA{ [COLUMN("B_ID")] public BId {get; set;} [COLUMN("b")] public ClassB b{get; set;} } [Table("TableB")] public...
It is often so,that you want to load something from the database but you want to handle it only in the class. Maybe some basic calculations or a certain way...
Hello, is it possible to access serial devices in edge.js over the C# methods?
Hello, I have reports that I would bind to a datasource from that I only know the schema. Till now I loaded the data with Nhibernate into a datatable or...