The fluent tag has no wiki summary.
0
votes
1answer
23 views
Fluent NHibernate: mapping property “Length” ignored when inserting or updating
we are trying to (slowly) migrate all our programs from Delphi to C#, and its our first time with an ORM, so please forgive if the question may be silly. ;-)
We are using:
DB2 Version 9.7.5
...
0
votes
0answers
7 views
Fluent NHibernate to map from a soap payload to an api(c#object)
Has anyone here ever used Fluent NHibernate to map from a soap payload to an api(c# object)? If so, can you provide any sample/example code? I'm having trouble even figuring out how to start such a ...
0
votes
3answers
49 views
Unable to cast object of type 'NHibernate.Collection.Generic.PersistentGenericBag to type 'System.Collections.Generic.List
I am trying to load the domain class by deserializing an xml file. So I have used System.Collections.Generic.List in the domain class. But when I try to save the object using Session object then it is ...
1
vote
2answers
28 views
Fluent NHibernate - ORA-00904: : invalid identifier Since Object property name is an oracle key word
I have used Fluent NHibernate to auto map for Oracle database. My Domain class have some Oracle key words as property names. Example: Group is a key word in Oracle. When we use Group as a column the ...
0
votes
2answers
44 views
Mapped property not filling [closed]
Alright so I have these models here
public partial class User
{
public int Id { get; set; }
public virtual IList<Subscription> Subscriptions { get; set; }
}
public class Subscription
...
0
votes
0answers
20 views
Wrong hash returning from db
I'm using Fluent NHibernate with ASP.NET 3.5 and Oracle 10. Passwords are SHA1 hashed on db. Returned string from db is different from saved before.
This is my hashing code.
public static ...
0
votes
0answers
18 views
Fluent nHibernate 'Table Per Concrete Class'
This is my first post and first, i want to thank you, because Stackoverflow helped me a lot of times!
Now my Problem:
I'm creating my Persistency for my webapp with Fluent nHibernate.
I have a base ...
0
votes
1answer
33 views
Fluent Nhibernate HasMany on non primary key
**Table Order**
Id (PK)
NonUniqueId
**Table OrderLine**
Id (PK)
OrderNonUniqueId
Text
I have a legacy database where there OrderLine references Order via non primary key. A Order Line may belong to ...
0
votes
0answers
18 views
Entity Framework one to many with 3 tables
I have three models that have a one to many relationship between the first and second, and second and third and would like to set up a one to many between the first and third model.
This is used to ...
0
votes
0answers
72 views
Why is it that Entity Framework gives the error “Enumeration yielded no results” for typical many-to-many functionality?
Our ASP.NET C# web application is used in the following environment .NET Framework 4
ASP.NET Web Forms.
IIS 7
Windows 2008
Visual Studio 2010
.NET IDE C#
HTTPS ( SSL )
-Entity Framework 5
In ...
0
votes
1answer
25 views
Fluent NHibernate - HasOne mapped to a ReferencesAny
I have the following POCO classes:
public class Container
{
public virtual Int64 ContainerId { get; protected set; }
public virtual string Name { get; set; }
public virtual Location ...
0
votes
0answers
26 views
Using Distinct in Laravel Fluent
I have this join:
Return DB::table('volunteer')
->join('volunteer_volunteer_category', 'volunteer_volunteer_category.volunteer_id', '=', 'volunteer.id')
...
-1
votes
0answers
33 views
Fluent NHibernate map via join table
Is it possible to map the following situation?
I have 4 tables (OBJECT, POINT, POLYLINE, POINT_TO_POLYLINE) , 3 of them are connected by a key (OBJECT, POINT, POLYLINE by ID_OBJECT) I can't figure ...
1
vote
1answer
65 views
ServiceStack ORMLite Fluent Configuration
I am looking to create a new project using ServiceStacks OrmLite. I have used EntityFramework in the past and I prefer the use of the fluent api for mapping over the invasive attributes.
Does ...
0
votes
1answer
98 views
How to click a button without id using FluentAutomation SeleniumWebDriver?
I am using FluentAutomation library that wraps Selenium Web driver calls so the site can be navigated in a more behavioral manner.
As long as elements have id or other distinct properties, it works ...
0
votes
1answer
99 views
Laravel 3: Joining and getting sum of two tables, Is there a better way?
I'm trying to get columns of a table while getting sum of another related table (I'm using a MySQL database). Tables are Advantages and Conversions, Advantages has a conversionID column to join. They ...
1
vote
3answers
35 views
Fluent NHibernate NonUniqueObjectException
I have a parent entity with a collection of children entities that need to be updated from a webservice pretty much every time I access that parent entity. I figured I could just do a Clear() on the ...
0
votes
0answers
21 views
Fluent NHibernate DynamicUpdate on a joined table
Can someone give me an example of how to set SelectBeforeUpdate and/or DynamicUpdate on a mapping on 2 or more joined tables? I have a concurrency issue, where old data is overwriting recently changed ...
0
votes
1answer
51 views
Play with subprojects and integration tests
I execute a minimal integration test in my play project like this:
@Test
public void test() {
Logger.info("start integration test");
running(testServer(3333, ...
2
votes
4answers
53 views
How to return derivered type from method declared in base type
I've a method in a base class that should return self instance of type as derivered type. For example:
class A
{
public string X { get; set; }
public A SetX(string x)
{
this.X = x;
...
0
votes
1answer
34 views
EF 4.3 fluent mapping Intermediate table TPT
I have the following legacy table structure (simplified for this post)
The following is my feeble attempt at configuring the Entity:
public class EntityConfiguration : ...
0
votes
0answers
110 views
Laravel: Is it possible to do a union query with Fluent or Eloquent?
I have a complex union query that I would like to translate from MS SQL to MySQL using either Laravel's Fluent query builder or Eloquent (just guessing only Fluent could handle it). The other ...
0
votes
0answers
30 views
WPF Fluent Ribbon Compile Problems
I am trying to compile the latest Version of the Fluent Ribbon (e709a1f6bb2e) for .NET 3.5 with Visual Studio 2008 but I got several problems with that. After removing the empty (?) Office2007 Theme ...
0
votes
1answer
51 views
Fluent NHibernate Composite Mapping
I am trying to map two tables :
the first one has an id (idA) and a field with the id (idB) of the other table.
the other one has a composite key based on the previous id (idB) and an other one ...
0
votes
1answer
55 views
In Laravels Eloquent/Fluent, is there a way to delete a row and everything connected to it through relationships?
Basically, it would be really nice to delete something and have it automatically search out and delete all of the rows and fields connected to it, rather than having to do all of that manually.
For ...
0
votes
1answer
66 views
Entity Framework Fluent Mapping Optional One-To-One
I need to set up a relationship that is currently a one-to-many:
public class Foo
{
public int FooId { get; set; }
public int? BarId { get; set; }
...
public virtual Bar Bar { get; ...
1
vote
0answers
66 views
Dynamic HasMany mapping using reflection in Fluent NHibernate
I am using NHibernate 3.3 and trying to map my class hierarchy to DB via reflection as follows:
class Parent
{
public virtual IList<Child> Children { get; set; }
}
class Child
{
public ...
0
votes
1answer
59 views
How to set every row to the same value with Laravel's Eloquent/Fluent?
I need to update all of the rows in a database so that a particular field in all of them is equal to a single value. Here's an example.
Let's say my database table is like so:
id | data | ...
0
votes
1answer
124 views
How to use the Page Object Pattern in Play 2.1 test classes?
I am a new user of Play and working through the ToDo List example (the beginner Java-based tutorial).
I am now experimenting with adding test cases using the Page Object Pattern ...
0
votes
0answers
64 views
automap dynamic types build by typebuilder with fluent nhibernate
I was wondering if this constellation of methods and tools would work or not. My plan is to define and create instances of classes at runtime per typebuilder and then map these to fluent nhibernate ...
0
votes
0answers
94 views
Conditional Mapping of POCO entities using Fluent API
I have this POCO class :
public class MyClass
{
public int MyKey { get; set; }
public string Name { get; set; }
public bool DiscriminatorField { get; set; }
public string AnotherInfo ...
2
votes
2answers
190 views
How do I use Eloquent syntax to delete all the rows in a table?
My guess was to use the following syntax:
MyModel::all()->delete();
But that did not work. I'm sure it's super simple, but I've searched for documentation on the subject and can't find it!
1
vote
0answers
17 views
Proxy Authentication With Fluent API Request?
I am currently using a Get Request with proxy information:
String result1 = Request.Get("_http://somehost/")
.version(HttpVersion.HTTP_1_1)
.connectTimeout(1000)
...
1
vote
0answers
101 views
Fluent NHibernate sometimes does not find record (returns null)
I fetch a mapped entity with
using (var session = myFactory.OpenSession())
{
using (var transaction = session.BeginTransaction())
{
try{
var myEntity = ...
0
votes
1answer
129 views
NHibernate SaveOrUpdate() working with GeneratedBy.Assigned() when it's not suppose to?
NHibernate's documentations specifically says
5.1.4.7. Assigned Identifiers
If you want the application to assign identifiers (as opposed to having NHibernate generate them), you may use the ...
1
vote
0answers
46 views
Fluent Repository Container
I have a question about designing a fluent repositories container.
Actually I would like to get data this way:
IEnumerable list = RepositoryContainer
.Of<Person>()
.Where(p => ...
2
votes
4answers
154 views
Why is there no WHERE clause in SQL query?
I have a strange problem. I noticed that the code defined below:
var query= unitOfWork.Session.CreateCriteria(typeof (SomeEntity)).Future<SomeEntity>().AsQueryable();
var queryWithWhere= ...
1
vote
1answer
95 views
Extension Methods on Generic Classes
I'm playing around with creating some fluent API's; sort of a DSL. I keep running into a specific issue, and I haven't found a way around it, here or elsewhere, that addresses the exact problem as I ...
0
votes
0answers
73 views
Fluent NHibernate - IAutoMappingOverride mapping.HasOne how to choose property for foreign key
I basically have the following objects:
[Location]
LocId
LocDsc
[LocationDetails]
LocDtlId
LocId
LocAdd
Now when i use fluent, it is joining the Location and LocationDetails tables as (LocId -> ...
2
votes
2answers
72 views
Productivity tool to generate fluent equivalent of non-fluent class?
One of the basic features of fluent interfaces is that methods that would conventionally be declared as void will instead return something usable, most often the instance of the class they belong to ...
0
votes
1answer
85 views
Fluent mapping fails with “Could not determine type…” exception.
In my project I have this mapping:
public virtual string LicensePlate { get; set; }
public VehicleMap()
{
Table("VEHICLE");
Id(x => x.LicensePlate, "LICENSE_PLATE");
...
}
And when ...
0
votes
1answer
70 views
Saving Fluent/NHibernate projections
I'm using the Fluent automapper to map my classes and I currently have a base class containing summary information for a person and a derived class containing their full information:
interface ...
0
votes
1answer
24 views
how to specify a composite key, in which one key is an identifier and another is not, using fluent nhibernate
I'm trying to specify a composite key, in which one key is an identifier and another is not, using fluent nhibernate. Is it possible in fluent? If yes, what I'm doing wrong in below mapping?
public ...
0
votes
1answer
80 views
Best way to make selects in laravel?
In order to use the Form::select, you need to add a name and two arrays.
In a normal case, we have one with the id and another one with the name. Both needs to be loaded from a query.
So in the ...
2
votes
1answer
258 views
Entity Framework Fluent, Table-Per-Type performance alternatives
I'm currently working on a EF Fluent project (yes, I do like writing it like that) that is taking a model first approach with Table-Per-Type architecture on EF 4.3.
As I've found out over the past ...
0
votes
3answers
193 views
Implementing Zero Or One to Zero Or One relationship in EF Code first by Fluent API
I have two POCO classes
public class Order
{
int id;
string code;
int? quotationId; //it is foreign key
public int Id{get;set;}
public string Code{get;set;}
public int? ...
2
votes
3answers
231 views
Fluent NHibernate does not create IN part of WHERE clause
I have Fluent NHibernate Linq queries where I check values based on run time arrays. A basic example would be something like:
var array = [1,2,3,4,5,6];
using (var session = ...
1
vote
1answer
220 views
why when i want use EF Power tools for view my model i get error?
Im using EF Code first and i generate my model by "EF 4.x DbContext Fluent Generator for c#" extension in vs2010. but when i want to view my Entity model via EF Power tools i get this error:"Sequence ...
0
votes
0answers
167 views
MVC3 EF5 fluent API mapping for table per hierarchy
I am using MVC3 with EF5 and fluent API mapping. I have a POST table with primary key ID. I have one main row in 'POST' table as the primary post and additional rows in the same 'POST' table that are ...
0
votes
1answer
243 views
Laravel - update row with variable using fluent query builder
iam building my web app, and i need to the simplest thing, just update fields inside table with some variables,but its not working he doesnt do anything ,values of the fields remain just as it was.
...


