active questions tagged business-objects - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T17:47:27Z http://stackoverflow.com/feeds/tag/business-objects http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1799661/using-entity-framework-generated-classes-in-business-logic-layer 1 Using Entity Framework generated classes in Business Logic Layer SorinA. 2009-11-25T20:13:05Z 2009-11-26T07:05:29Z <p>I have a ASP.net (C#) project that is using a three layer architecture. I started to use Entity Framework in my DAL and the question is to what extent classes generated by Entity Framework can be used in the Business Logic Layer? </p> <p>It is a good idea to use them directly or should i create my own business objects and map to them from Entity Framework(db->O/RM->BOs)?</p> http://stackoverflow.com/questions/1794274/business-objects-containers-or-functional 0 Business Objects - Containers or functional? Walter 2009-11-25T02:23:47Z 2009-11-25T16:43:18Z <p>Where I work, we've gone back and forth on this subject a number of times and are looking for a sanity check. Here's the question: Should Business Objects be data containers (more like DTOs) or should they also contain logic that can perform some functionality on that object.</p> <p>Example - Take a customer object, it probably contains some common properties (Name, Id, etc), should that customer object also include functions (Save, Calc, etc.)?</p> <p>One line of reasoning says separate the object from the functionality (single responsibility principal) and put the functionality in a Business Logic layer or object.</p> <p>The other line of reasoning says, no, if I have a customer object I just want to call Customer.Save and be done with it. Why do I need to know about how to save a customer if I'm consuming the object?</p> <p>Our last two projects have had the objects separated from the functionality, but the debate has been raised again on a new project. Which makes more sense?</p> http://stackoverflow.com/questions/1783142/net-service-burden-of-using-entity-translator 0 .NET Service burden of using Entity Translator Gopalakrishnan Subramani 2009-11-23T13:30:37Z 2009-11-23T16:36:57Z <p>We have incremental burden of maintaining EntityTranslator to transform the business messages to the service message and service message to business message in .NET and WCF application. In fact, I cannot call them as Business object since we just need to fetch from DB and update the same. We read data from device and store to DB and read data from DB and store to device. </p> <p>All our classes are simple, plain .NET classes and doesn't do anything specific.</p> <p>It is very similar classes.</p> <p>Here is my service entity.</p> <pre><code>[DataContract] public class LogInfoServiceEntity { string data1; string name; } public class LogInfo { string data1; string name; } </code></pre> <p>Now I need to define the translator just to create the instance type of other side and copy the data other side. We have around 25 classes like this and we feel, very difficult to manage them. So we have 25 Business to Service translator and 25 Service to Business Translator.</p> <p>I like to have simple POJO kind of classes to store and get the information than using all the translator. </p> <p>What is the best way to handle the situation? Or Is translator is the best way to handle the situation?</p> http://stackoverflow.com/questions/1772805/business-objects-xi-link-to-report 0 Business Objects XI link to report PaulN 2009-11-20T19:44:39Z 2009-11-20T21:48:37Z <p>Hi, Does anyone know how if there is a way to link to a Folder or Report contained in Business Objects Enterprise? I would like to add a link on my intranet web site to a Report.</p> http://stackoverflow.com/questions/1525770/migrating-bo-reports-between-environments 0 Migrating BO Reports between environments smaclell 2009-10-06T13:58:10Z 2009-11-19T17:43:12Z <p>We have the standard 3 environment setup of development, testing and production. Each environment has their own report server, web server, database server, etc. </p> <p>Part of our migration is to move our business objects (xi r2) reports between the servers but as of right now we need to manually update the connection settings for each report. This is mildly painful now at 40+ reports and will become a nightmare as we continue.</p> <p>Due to how we generate reports we cannot dynamically change the connection string when we generate the report. We are using stored procs instead of Universes because that is what the team is most familiar with. </p> <p>Any suggestions would be greatly appreciated.</p> http://stackoverflow.com/questions/335753/iterating-through-records-crystal-reports-2008 0 Iterating Through Records - Crystal Reports 2008 GregD 2008-12-02T22:54:22Z 2009-11-17T03:59:25Z <p>I need to know how to iterate through records in CR2008 and when it reaches a record that is NOT NULL, record that in a variable.</p> <p>I have a formula called "frmAccum" that I drop in the details section and suppress it. I use this to gather information for each record that's processed. I also have a formula called frmReset where I rest the stringvar "person_name" to "" and I can drop that in a Group header to reset after a grouping.</p> <p>When it comes across a person_name field that is NOT NULL and is not empty, I want it to retain the name in a variable to be used in the report header.</p> <p>So something like this:</p> <pre><code>stringvar person_name; whileprintingrecords; If ({Command.personname} &lt;&gt; "") Then person_name := {Command.personname} </code></pre> <p>I can't get this combination to work. Any help is appreciated.</p> http://stackoverflow.com/questions/1445920/programmatic-integrity-check-creating-false-positives 0 Programmatic Integrity Check Creating False Positives Sivvy 2009-09-18T17:38:04Z 2009-11-13T16:31:16Z <p>I created an application that automates some of the mundane tasks of using business objects designer. One of the tasks it performs is documenting a universe after creation, and recording the documentation to an HTML file.</p> <p>The problem I'm having is that (many times) I'll create a universe, run an integrity check on it, and find no errors... Then I'll have my application run the built-in COM integrity check of designer, only to find that it detects some errors that aren't actually there.</p> <p>Does anyone know why it does this? Or even a way to fix it? The purpose of it is to not only have an integrity check run for personal use, but to also record the results for the documentation. Parsing my contexts personally works fine, and the integrity check doesn't show anything, but the programmatic integrity check finds a single loop in both contexts (At least in this instance).</p> http://stackoverflow.com/questions/1723465/how-to-hyperlink-to-a-business-objects-report-in-infoview 0 How to Hyperlink to a Business Objects Report in Infoview IdahoX 2009-11-12T16:21:39Z 2009-11-12T19:56:01Z <p>Is there a way to craft a hyperlink that connects to a Crystal Report or Webi within Infoview? Ideally, unauthenticated users would be challenged with Infoview security and then redirected to the report. Thanks!</p> http://stackoverflow.com/questions/1277064/foreign-key-in-related-business-objects 1 Foreign Key in related Business Objects ob 2009-08-14T10:07:24Z 2009-11-11T09:05:26Z <p>If I have two business objects, with a related field (foreign key CountryId), how do I display the CountryName in place of the CountryId when I display a list of the employee class?</p> <pre><code>public class Employee { public int Id { get; set; } public string FirstName { get; set; } public string FamilyName { get; set; } public int CountryId { get; set; } } public class Country { public int Id { get; set; } public string CountryName { get; set; } } </code></pre> http://stackoverflow.com/questions/69309/how-do-i-query-the-crystalreports-cms-database 1 How do I query the CrystalReports CMS database? Evs 2008-09-16T04:06:46Z 2009-11-09T01:50:59Z <p>Is it possible to query the Crystal CMS database and get meaningful data back? The data appears to be encrypted.</p> <p>I am running Business Objects Crystal Report Server version 11.5</p> http://stackoverflow.com/questions/1535642/subsonic-2-x-configuring-object-datasource-missing-my-dal 0 SubSonic 2.x - Configuring Object Datasource - Missing My DAL! ElHaix 2009-10-08T04:34:12Z 2009-11-05T08:31:41Z <p>I've got two main sprocs that I'd like to link up to two separate object data sources.</p> <p>I generate my DAL in a separate project, and simply import the DLL into my current project.</p> <p>The problem is that I'm unable to see any of my DAL objects in the business object dropdown list, and none show up when I select Show Only Data Components.</p> <p>I am however, able to retreive data in my code behind ie:</p> <p>SubSonic.StoredProcedure sp = SPs.SpGetAllUserReceipts(UserID);</p> <p>And iterate through a IDataReader. </p> <p>... so any suggestions please?</p> <p>Thank you.</p> http://stackoverflow.com/questions/588740/datamember-property-objectname-cannot-be-found-on-the-datasource 1 DataMember property [ObjectName] cannot be found on the DataSource ptutt 2009-02-26T01:29:47Z 2009-10-28T21:33:28Z <p>I have a business object, which is a composite of child objects.<br /> I am using databinding in Visual Studio 2008 to bind to controls on a Windows form.</p> <p>But I am getting the above error in the InitializeComponent method of the form.</p> <p>Lets say I have an object called ParentObject which contains a generic list, ChildListObject. The ParentObject also has Child object, which itself has a Child object. (ie ParentObject.ChildObject.ChildObject) </p> <p>I set the main binding source:</p> <pre><code>BindingSource.Datasource = ParentObject </code></pre> <p>I add a grid and set it's binding source:</p> <pre><code>GridBindingSource.Datasource = ParentObject </code></pre> <p>and set the DataMember to:</p> <pre><code>BindingSourceB.DataMember = "ChildListObject" </code></pre> <p>Now, the grid's datasource is set to GridBindingSource:</p> <pre><code>Me.MyDataGridView.DataSource = Me.GridBindingSource </code></pre> <p>There are also other controls that are bound to properties of the ParentObject and the ParentObject.ChildObject</p> <p>I have tested this in an isolated project and it works fine, so I am having trouble finding out what the real bug is? Code that used to work, will all of the sudden stop working.</p> <p>The error I get is (if I use the names of the objects in the above example):</p> <blockquote> <p>"DataMember property ChildObject cannot be found on the DataSource"</p> </blockquote> <p>It fails on:</p> <pre><code>Me.MyDataGridView.DataSource = Me.GridBindingSource </code></pre> <p>Strangely, if I remove &lt;System.Diagnostics.DebuggerStepThrough()&gt; and then when it fails just continue it is fine??? But it still fails in runtime.</p> <p>Does anyone have any ideas that could point me in the right direction? The closest I have found through googling is it may have something to do with the order of the generated designer code getting messed up. Code that was working, will all of the sudden stop working.</p> <p><hr /></p> <p>This issue seems to come and go. If I just continue after the error is raised the program happily continues with no problems. Possibly a bug in VS. But at run-time the error still exists.</p> <p>What is causing this problem? How do I stop it occurring?</p> http://stackoverflow.com/questions/1612191/java-can-a-desktop-app-log-in-in-a-web-app-and-retrieve-a-session-object-to-au 0 Java: Can a desktop App log-in in a web app and retrieve a "session" object to authenticate itseft in other apps which trust the web app? Telcontar 2009-10-23T08:56:27Z 2009-10-26T20:33:12Z <p>I don't know if this question has any sense, but this is what my boss want.</p> <p>I work in a company with an intranet web. </p> <p>In my department we have developed an application wich connects to a Bussiness Object server and executes and prints reports. This is a regular client/server app with our own user/password manintenance to log in.</p> <p>My boss want to remove our password maintenance and let the users log in using the intranet password, somehow the desktop app connect the intranet (i don't know if it has a web service, but probabilly yes), makes the log in and retrieves some kind of object the Bussiness Object can use to authenticate.</p> <p>Can this be done? I know the B.O. can use LDAP authentication if its well configured, so that if i can verify the intranet password and redirect the same password to B.O. it can autenticate the user by itself.</p> http://stackoverflow.com/questions/1462690/ui-business-logic-layer-data-layer-and-where-to-put-web-services 2 UI, Business Logic Layer, Data Layer and where to put web services The Murph 2009-09-22T21:22:17Z 2009-10-26T20:22:39Z <p>We are developing a web application. We want to possibly reuse the work we do here for a different application that will use the same database, and use the same business rules for reading and writing to said database.</p> <p>Which design would be more correct</p> <ol> <li><p>Having the UI call web services, which would use business objects containing the business logic, which would talk to the data access layer.</p></li> <li><p>Have the UI use business objects containing the business logic, which would call web services, which would then talk to the data access layer.</p></li> <li><p>Have the UI user business objects containing the business logic, which would talk to the data access layer.</p></li> </ol> http://stackoverflow.com/questions/1590255/devexpress-xtrareports-using-a-business-object-as-a-datasource 0 DevExpress Xtrareports using a Business object as a datasource Ian Mechanic 2009-10-19T18:17:55Z 2009-10-19T18:28:26Z <p>Hi</p> <p>I am trying out DevExpress Xtrareports, but have asimple problem that I am not able to find an answer to.</p> <p>In an Asp.net website project, I want to add a business object to my report as a datasource and then drag and drop the fields from my new business object data source onto the report designer.</p> <p>Can some one help explain how i do this.</p> <p>I asssume I have just missed something. </p> <p>Thanks</p> <p>Ian</p> http://stackoverflow.com/questions/1556315/develop-monthly-and-weekly-employee-salary-report-by-department 0 Develop Monthly and Weekly Employee Salary Report by Department [closed] raghu 2009-10-12T19:02:45Z 2009-10-12T19:31:23Z <p>i want to develop the web intelligence report with weekly and monthly salaries of employees in devision with departmentwise. can any one help me.</p> http://stackoverflow.com/questions/1531937/business-logic-in-a-data-object-vs-coupling-vs-dto-vs 1 Business logic in a data object vs. coupling vs. DTO (vs. ?) Jon Seigel 2009-10-07T14:19:35Z 2009-10-08T16:17:52Z <p>I've got a set of business/domain classes (for a calendar) that are going to be exposed in an internally-public API. In the same API, there are data objects that directly mirror the underlying database structure (NHibernate mapping, but that's unimportant).</p> <p>What I need to do is build typed collections of those objects, so the days on the calendar can each contain a set of appointments, reminders, etc., which come from the database.</p> <p>One solution is to "tag" each data object using a marker interface from the domain model:</p> <pre><code>public class CalendarAppointment : PersistentEntity, ICalendarObject</code></pre> <p>But then I've put business/domain model stuff in with my data model.</p> <p>Another solution is to wrap the data model classes as follows, and expose/use those in the calendar API:</p> <pre><code>public class Appointment : CalendarAppointment, ICalendarObject</code></pre> <p>But this introduces very obvious coupling.</p> <p>A third solution is to use a DTO, but I would need to expose every field in the data object in the DTO... so it doesn't seem to make sense to create a DTO in the first place.</p> <p>Which is the best option here, or is there a better option?</p> <p>This is a .NET 2.0 project, if that makes a difference.</p> http://stackoverflow.com/questions/1536150/is-nhibernate-intended-to-replace-database-objects 0 Is nHibernate intended to replace database objects? Neil Ramsbottom 2009-10-08T07:26:51Z 2009-10-08T07:51:59Z <p>I've not yet found a clear answer to this and to clarify:</p> <p>With nHibernate and SQL server are you expected to disregard or migrate your business logic stored in your stored procedures, views and triggers into HQL or application code?</p> http://stackoverflow.com/questions/1529283/can-we-use-extension-methods-for-building-business-rule-engines 1 Can we use Extension Methods for building business rule engines? Perpetualcoder 2009-10-07T03:06:07Z 2009-10-07T04:37:52Z <p>I am looking to do something like this</p> <pre><code>public class ProductBiz: BizBase&lt;Product&gt; { public List&lt;String&gt; BrokenRules {get;set;} // Some kind of data + biz operation implementation } public static class ProductBizExtensions{ public ProductBiz Rule1(this ProductBiz prodBiz) {} public ProductBiz Rule2(this ProductBiz prodBiz) {} public bool ApplyRules (this ProductBiz prodBiz, Func&lt;ProductBiz,bool&gt; ruleset){} } </code></pre> <p>Then in client code use it as</p> <pre><code>productBiz.Rule1().Rule2(); productBiz.Rule2().Rule1(); </code></pre> <p>OR</p> <pre><code>// create multicasted delegate of type Func&lt;ProductBiz,bool&gt; say rulesetDelegate productBiz.ApplyRules(rulesetDelegate); </code></pre> <p>Just wanted to ask before i dive deep and drown.</p> <p>What are the potential pitfalls with this approach???</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1524767/how-to-handle-null-values-in-my-business-objects 1 How to handle null values in my business objects Max 2009-10-06T10:26:05Z 2009-10-06T11:42:03Z <p>Let's say I have a custom class like this one:</p> <pre><code>public class Customer { public int CustomerID { get; set; } public string CompanyName { get; set; } public string BusinessAddress { get; set; } public string Phone { get; set; } public int ParentID { get; set; } } </code></pre> <p>I create custom objects from the database using a datareader. Ex:</p> <pre><code> while (dr.Read()) { listCustomers.Add(new Customer( Convert.ToInt32(dr["CustomerID"]), Convert.ToString(dr["CompanyName"]), Convert.ToString(dr["BusinessAddress"]), Convert.ToString(dr["Phone"]), Convert.ToInt32(dr["ParentID"]), ) </code></pre> <p>ParentID can be null in the database (and I can't change it). When it's null, the conversion obviously fails. </p> <p>How should I handle null values retrieved from the DB to populate my business objects? Would it be good pratice to use Nullable Types in my custom class? Any other tips?</p> http://stackoverflow.com/questions/883950/how-do-we-properly-configure-local-dev-boxes-using-visual-studio-2008-to-deploy-o 0 How do we properly configure local dev boxes using Visual Studio 2008 to deploy onto a server running Crystal Reports XI Release 2 .Net 2005 Server? jasoncrider 2009-05-19T17:03:41Z 2009-09-22T14:04:30Z <p>In our scenario, a developer builds the web app locally and then we place it out on the application server. Recently, projects have been upgraded to Visual Studio 2008.</p> <p>We have been having issues (such as the print control not functioning properly) and I want to see if they are related to the merge modules (or whatever else).</p> <p>My first thought comes from looking at the Common Files\Merge Modules\ folder on a dev's box is that I see CrystalReports11_5_maps.msm, CrystalReports11_5_Net.msm, and CrystalReports11_5_NET_2005.msm.</p> <ol> <li>Do we need the 2008 merge modules in there?</li> <li>Do we need to remove the _NET.msm since we are using 2005 on the server?</li> </ol> <p>It's also possible that the project wasn't built correctly with the merge modules but I want to verify what files should be there first in our scenario.</p> <p>EDIT: The developer I'm working with currently is actually on Visual Studio 2005 and we still have issues.</p> http://stackoverflow.com/questions/975379/validation-and-in-service-layer-or-business-objects 4 Validation and in Service Layer or Business Objects? Ryan Tomlinson 2009-06-10T12:53:52Z 2009-09-20T18:48:02Z <p><a href="http://martinfowler.com/eaaCatalog/serviceLayer.html" rel="nofollow">Martin Fowler suggests</a> using a service layer as a boundary between the domain model and and "Data Loaders". However, Rockford Lhotka suggests building validation into the business object itself and this is exactly what CSLA.NET does.</p> <p>The benefits of abstracting this into a service layer is obviously that your service layer can coordinate the activity/operation across multiple business objects. But what are the other advantages and disadvantages of using a service layer over directly using business objects for business logic and validation?</p> http://stackoverflow.com/questions/1429986/how-can-i-talk-to-the-business-objects-instance-on-serverbo-infoview-for-a-wind 0 How can I talk to the Business objects Instance on server(BO Infoview) for a windows app c# unknown (google) 2009-09-15T22:38:19Z 2009-09-16T19:20:47Z <p>Hi folks,</p> <p>we have BO Infoview runnig on our servrer. I would like to establish connection to it from a local windows app in C#. Do we have any API's for BO infoview??</p> <p>Please help....</p> http://stackoverflow.com/questions/870553/business-objects-xi-can-a-non-admin-copy-a-report-from-one-environment-to-anoth 2 Business Objects XI-Can a *non* Admin copy a report from one environment to another? Chadworthington 2009-05-15T19:52:56Z 2009-09-11T18:51:21Z <p>Pardon me if the subject question doesn't make sense and let me try to explain.</p> <p>We have a production environment of BO pointing to a production database. And we have a development environment pointing to a dev database.</p> <p>When a user complains that a report doesn't work, we would like to copy the report to the dev environment and after making the fix, ensure that the report now works. The problem is that we were told by our BO admin that one must have Admin privileges to be able to do this and getting an Admin to do this requires an act of congress plus one week.</p> <p>Given developers admin access to the production environment is no a posisblity, obviously. But I find it hard to believe that one should have to have admin rights to be able to do this. Does this seem right?</p> <p>-Just a rookie BO user</p> http://stackoverflow.com/questions/1067979/sap-business-objects 1 SAP Business Objects Manoj 2009-07-01T08:33:07Z 2009-09-11T18:40:32Z <p>Hi, I have been offered by my employer to work on SAP Business Objects to analyse large amount of data they have. </p> <p><br>I have the following doubts before I could accept that: <br><br> a. I love programming and do not want to lose touch with it. Do you think working on this tool would excite a person who loves building software? Or Is it like most part of the tool configurable through Wizard like interface?<br></p> <p>b. Is this tool capable of working on data collected for research and testing purpose? <br></p> <p>I tried googling but all I could get is some videos which mentions "Business Intelligence" more than 12 times a minute. Any suggestion or even links to help me make the preliminary analysis would be helpful. Thanks...</p> http://stackoverflow.com/questions/882904/date-prompt-in-bo 0 Date prompt in BO Noob 2009-05-19T13:51:50Z 2009-09-11T18:24:31Z <p>I have a webi report that accepts a date input. I need to receive data from the user in the format "dd-Mmm-YYYY"; however the calendar control that BO presents to the user for date selection is always shown in M/DD/YYYY HH:MM:SS AM/PM.</p> <p>Is there any way to control this behaviour?</p> http://stackoverflow.com/questions/1383480/how-to-databind-to-a-dropdown-list-of-user-defined-types 1 How to databind to a dropdown list of user defined types? Bill 2009-09-05T14:40:44Z 2009-09-08T00:05:16Z <p>I have a dropdown list containing the days of the week - Monday to Sunday. It is populated with a user defined type of two values that map the numeric day of the week to it's name.</p> <pre><code>Public Structure WeekDays Public ID As Integer Public Text As String Public Overrides Function ToString() As String Return Me.Text End Function End Structure </code></pre> <p>The object I want to Bind to has an integer property DayOfWeek, and I want to bind the ID value of the selected item in the dropdown to the DayOfWeek property on the Object. eg. The user selects Thursday, and the ID of 4 is passed to the object.</p> <p>In code I can retrieve the UDT of the SelectedItem, but I can't work out which property on the combo box to bind to. </p> <ol> <li>If I add the UDTs directly to the Items collection of the dropdown, the SelectedValue is Nothing.</li> <li>If I add the UDTs to a List(Of UDT) collection and set that as the dropdown's datasource, with the ValueMember set to ID and DisplayMember set to Text, the SelectedValue returns the whole UDT, not the ID as instructed in the ValueMember property.</li> </ol> <p>Databinding seems to work really well for plain textboxes, but it seems to get way more pernickety when dealing with more complex controls.</p> <p>Update: What I am looking for is the Binding statement. eg. Neither...</p> <pre><code>oB = New Binding("SelectedItem", Payroll, "DayOfWeek") oB = New Binding("SelectedItem.ID", Payroll, "DayOfWeek") </code></pre> <p>... works. The first is just ignored (possibly because the SelectedItem property is Nothing), and the Second fails with a "Cannot bind..." error.</p> http://stackoverflow.com/questions/739672/user-objects-dialog-box-doesnt-opens-up-business-object 0 User Objects Dialog box - Doesn't opens up (Business Object) Smart Pandian 2009-04-11T07:25:23Z 2009-09-02T10:56:51Z <p>In business Objects, When I click the User Objects icon in a query panel for a universe, the User Objects dialog box doesnt opens up, however, i checked with other universe, there user objects dialog opens up. </p> <p>I am not sure of what exactly the parameter of the universe in Designer, enables this feature in Business Objects. Can some one help me on this?</p> http://stackoverflow.com/questions/831290/what-pitfalls-to-expect-from-generation-of-classes-from-database-tables-using-ref 0 What pitfalls to expect from generation of classes from database tables using Reflection.Emit and xsd files ?! YordanGeorgiev 2009-05-06T19:26:35Z 2009-09-02T03:13:22Z <p>I am playing with class generation ( one class for a table - inheritance etc. not to be considered for now ... ). So I copied shamelessly from <a href="http://codebetter.com/blogs/david.hayden/archive/2006/02/05/137569.aspx" rel="nofollow">here</a> the Reflection.Emit code. Reworked it to be generated per table in a given database and created the files with the following batch call in the Project's bin folder : for /f "tokens=*" %%i in ('dir *.xsd /b') do "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\xsd.exe" -c -l:c# -n:BusinessObjects %i </p> <p>So far so good. The idea is each time when a new db version arrives to regenerate the classes and copy them in the "real project" ( I do not need any run-time generation ) and also would like to enjoy Intellisense. What pitfalls , difficulties and problems might arrise from this type of approach, any better suggestions for those loosely described requirements ?!</p> <p>Here is the Generation code of the console app creating the assemblies : </p> <pre><code> using System; using System.Collections.Generic; using System.Text; using log4net; using log4net.Config; using System.Data; using System.Data.SqlClient; using System.Threading; using System.Reflection; using System.Reflection.Emit; namespace GenerateAssemblies { class Program { private static readonly ILog logger = LogManager.GetLogger ( typeof ( Program ) ); static void Main ( string[] args ) { DOMConfigurator.Configure(); //tis configures the logger logger.Debug ( "APP START" ); DataTable dtTables = Program.GetTablesFromDb ( "POC" ) ; foreach (DataRow dr in dtTables.Rows) { string strTableName = dr[0].ToString () ; CodeEmitGeneratingAssemblies.DllGenerator.WriteXmlAndTxtFileOutOfDataTableByName ( strTableName); CodeEmitGeneratingAssemblies.DllGenerator.CreateAssembly ( strTableName ); } Console.WriteLine ( " Should have now all the dll's " ); Console.ReadLine (); } //eof method static DataTable GetTablesFromDb ( string strDbName ) { DataTable dt = new DataTable ( "tables" ); string connectionString = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=" + strDbName + ";Data Source=ysg"; using (SqlConnection connection = new SqlConnection ( connectionString )) { SqlCommand command = connection.CreateCommand (); command.CommandText = string.Format ( "SELECT name from sys.tables" ); connection.Open (); dt.Load ( command.ExecuteReader ( CommandBehavior.CloseConnection ) ); } return dt; } //eof method } //eof class namespace CodeEmitGeneratingAssemblies { public class DllGenerator { private static readonly ILog logger = LogManager.GetLogger ( typeof ( DllGenerator ) ); public static void WriteXmlAndTxtFileOutOfDataTableByName (string strDataTableName) { DOMConfigurator.Configure (); //tis configures the logger DataTable tableData = new DataTable ( strDataTableName ); string connectionString = "Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=POC;Data Source=ysg"; using (SqlConnection connection = new SqlConnection ( connectionString )) { SqlCommand command = connection.CreateCommand (); command.CommandText = string.Format ( "SELECT * FROM [" + strDataTableName + "]"); logger.Debug ( "command.CommandText is " + command.CommandText ); connection.Open (); tableData.Load ( command.ExecuteReader ( CommandBehavior.CloseConnection ) ); } tableData.WriteXml ( strDataTableName + ".xml" ); tableData.WriteXmlSchema ( strDataTableName + ".xsd" ); } //eof method public static void CreateAssembly ( string strDataTableName ) { AppDomain currentDomain = Thread.GetDomain (); AssemblyName myAssemblyName = new AssemblyName ( ); myAssemblyName.Name = strDataTableName; AssemblyBuilder builder = currentDomain.DefineDynamicAssembly ( myAssemblyName, AssemblyBuilderAccess.RunAndSave ); builder.AddResourceFile ( "TableXml", strDataTableName + ".xml" ); builder.AddResourceFile ( "TableXsd", strDataTableName + ".xsd" ); builder.Save ( strDataTableName + ".dll" ); } } //eof class } //eof namespace } //eof namespace </code></pre> http://stackoverflow.com/questions/1337502/business-logic-on-multiple-objects-where-to-put-the-loop 2 Business logic on multiple objects - where to put the loop? ireddick 2009-08-26T21:07:56Z 2009-08-28T09:07:51Z <p>...and how best to handle success/failure feedback to a view layer.</p> <p>Assuming that the business objects will be iterated over in the business logic method if the loop is put there (i.e. not a bulk update operation), code options in the view logic are:</p> <pre><code>doBusinessLogic( Set businessObjects ) </code></pre> <p>or</p> <pre><code>for (businessObject : businessObjects) { doBusinessLogic( businessObject ) } </code></pre> <p>Sense would say that the former is correct, as it gives control of optimisations, etc. to the business logic method. However, this vastly complicates error handling and feedback to the view layer (assuming you are aiming for a consistent error handling/presentation model).</p> <p>Assuming that we want a view layer that receives success/error feedback in a consistent way (i.e. from single or multiple business object operations), what is the best approach?</p> <p>Clarification:</p> <p>Handling multiple exception types thrown from a business logic call back in the view layer is code heavy and also causes maintenance problems (new exceptions are introduced which the view logic doesn't know about). The ideal is for a business logic method to handle errors in its own layer and "package" them for the view to deal with in a consistent way.</p>